homepage/files/default.css

65 lines
981 B
CSS
Raw Normal View History

2018-05-10 23:38:46 +02:00
body {
2018-05-24 01:32:30 +02:00
font-family: "Optima", sans-serif;
2018-05-10 23:38:46 +02:00
font-size: 16px;
2018-05-11 15:13:25 +02:00
margin: 0 5% 0 5%;
width: 1080px;
2018-05-24 01:32:30 +02:00
background-color: lightblue;
2018-05-10 23:38:46 +02:00
}
2018-05-11 15:13:25 +02:00
.header {
background-image: url("cropped-img_2723.jpg");
padding: 20px;
2018-05-11 15:15:04 +02:00
text-align: left;
2018-05-11 15:13:25 +02:00
height: 250px;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.main {
padding: 15px;
2018-05-24 01:32:30 +02:00
background-color: whitesmoke;
2018-05-11 15:13:25 +02:00
}
.row:after {
content: "";
display: table;
clear: both;
}
.footer {
font-size: 12px;
2018-05-24 01:32:30 +02:00
background-color: #333;
2018-05-11 15:19:58 +02:00
overflow: hidden;
}
.footer a {
float: left;
display: block;
2018-05-24 01:32:30 +02:00
color: #f2f2f2;
2018-05-11 15:19:58 +02:00
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.footer a:hover {
background-color: #ddd;
color: black;
}