Last change
on this file was 057badc, checked in by Vlado 222039 <vlado.popovski@…>, 2 months ago |
Adding code
|
-
Property mode
set to
100644
|
File size:
573 bytes
|
Rev | Line | |
---|
[057badc] | 1 | * {
|
---|
| 2 | margin: 0;
|
---|
| 3 | padding: 0;
|
---|
| 4 | box-sizing: border-box;
|
---|
| 5 | font-family: sans-serif;
|
---|
| 6 | }
|
---|
| 7 |
|
---|
| 8 |
|
---|
| 9 | .container {
|
---|
| 10 | margin-top: 24px;
|
---|
| 11 | display: block;
|
---|
| 12 | padding: 10px 4px;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | .card {
|
---|
| 16 | border-bottom: 1px solid black;
|
---|
| 17 | font-size: 1.25em;
|
---|
| 18 | display: flex;
|
---|
| 19 | flex-direction: row;
|
---|
| 20 | justify-content: space-between;
|
---|
| 21 | width: 600px;
|
---|
| 22 | margin-left: auto;
|
---|
| 23 | margin-right: auto;
|
---|
| 24 | padding: 4px 5px;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | .card-header {
|
---|
| 28 |
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | .card-value {
|
---|
| 32 |
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | .product:nth-child(even) {
|
---|
| 36 | background-color: #dddddd;
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | .product:nth-child(odd) {
|
---|
| 40 | background-color: whitesmoke;
|
---|
| 41 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.