71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
/* Container
|
|
/*---------------------------------------------*/
|
|
.container {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
/* Header
|
|
/*---------------------------------------------*/
|
|
header {
|
|
background: #33C3F0;
|
|
color: #afe1da;
|
|
text-align: center;
|
|
padding: 25px 0;
|
|
margin-bottom: 30px;
|
|
}
|
|
header a,
|
|
footer a {
|
|
color: #eee;
|
|
}
|
|
header a,
|
|
footer a,
|
|
header a:hover {
|
|
text-decoration: none;
|
|
}
|
|
header a:hover,
|
|
footer a:hover {
|
|
color: #fff;
|
|
}
|
|
header h1 {
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
header h1 a {
|
|
color: #fff;
|
|
}
|
|
header ul {
|
|
list-style: none;
|
|
margin: 20px 0 0 0;
|
|
padding: 0;
|
|
}
|
|
header ul li {
|
|
display: inline;
|
|
margin: 0 5px;
|
|
}
|
|
header ul a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Footer
|
|
/*---------------------------------------------*/
|
|
footer {
|
|
background: #1EAEDB;
|
|
color: #afe1da;
|
|
padding: 60px 0;
|
|
margin-top: 80px;
|
|
}
|
|
|
|
/* For larger screens
|
|
/*---------------------------------------------*/
|
|
@media (min-width: 550px) {
|
|
header {
|
|
padding: 60px 0;
|
|
margin-bottom: 80px;
|
|
}
|
|
header h1 {
|
|
float: left;
|
|
}
|
|
header ul {
|
|
float: right;
|
|
}
|
|
} |