86 lines
1.1 KiB
CSS
86 lines
1.1 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
padding: 10px;
|
|
display: block;
|
|
background-color: grey;
|
|
}
|
|
|
|
.banner {
|
|
background-color: black;
|
|
color: white;
|
|
width: 100%;
|
|
position: fixed;
|
|
padding-top: 5vh;
|
|
padding-bottom: 10vh;
|
|
}
|
|
|
|
.banner.top {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
.banner.bottom {
|
|
background-color: black;
|
|
color: white;
|
|
bottom: 0;
|
|
}
|
|
|
|
.row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.column {
|
|
float: left;
|
|
padding: 5vw;
|
|
}
|
|
|
|
.column.side {
|
|
width: 25%;
|
|
}
|
|
|
|
.column.middle {
|
|
width: 50%;
|
|
}
|
|
|
|
.midbod {
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
.panel {
|
|
float: left;
|
|
}
|
|
|
|
img {
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
|
|
.panel.labelcontainer {
|
|
background-color: black;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.label {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.label.bodytext {
|
|
background-color: black;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-style: normal;
|
|
font-size: 12;
|
|
}
|
|
|
|
.label.title {
|
|
font-style: bold;
|
|
font-size: 18;
|
|
} |