Files
straysong_pico_theme/css/custom-h-nav.css

69 lines
1.1 KiB
CSS
Raw Permalink Normal View History

2015-01-02 02:27:03 -05:00
/* Container
/*---------------------------------------------*/
.container {
padding: 0 10px;
}
/* Header
/*---------------------------------------------*/
header {
background: var(--header-background);
color: var(--header-text);
2024-02-16 19:18:57 +00:00
text-align: right;
2015-01-02 02:27:03 -05:00
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: var(--header-text);
2015-01-02 02:27:03 -05:00
}
2024-02-16 19:18:57 +00:00
header p {
2015-01-02 02:27:03 -05:00
font-weight: bold;
2024-02-16 19:18:57 +00:00
font-variant: small-caps;
2015-01-02 02:27:03 -05:00
margin: 0;
}
header h1 a {
color: var(--header-text);
2015-01-02 02:27:03 -05:00
}
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: var(--footer-background);
color: var(--footer-text);
2015-01-02 02:27:03 -05:00
padding: 60px 0;
margin-top: 80px;
}
/* For larger screens
/*---------------------------------------------*/
@media (min-width: 550px) {
header h1 {
float: left;
}
header ul {
float: right;
}
}