41 lines
473 B
CSS
41 lines
473 B
CSS
.records {
|
|
font-size: 12px;
|
|
padding: 30px;
|
|
color: grey;
|
|
}
|
|
|
|
.myNav {
|
|
background-color: black;
|
|
color: darkgrey;
|
|
justify-content: center;
|
|
}
|
|
|
|
.column {
|
|
float: left;
|
|
width: 40%;
|
|
background-color: beige;
|
|
padding: 2%;
|
|
}
|
|
|
|
.row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.buffer {
|
|
float: left;
|
|
width: 2%;
|
|
background-color: darkgrey;
|
|
}
|
|
|
|
.allmostbiggertext {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.body {
|
|
background-color: darkgrey;
|
|
}
|