Files
dairydemon.net/styles/index.css

56 lines
594 B
CSS
Raw Normal View History

2024-10-05 19:15:34 -05:00
/* header and footer */
header {
2025-12-29 18:40:15 -05:00
padding: 0;
2024-10-05 19:15:34 -05:00
}
footer {
text-align: center;
}
#headerimg {
2025-12-29 18:40:15 -05:00
float: right;
2024-10-05 19:15:34 -05:00
}
#headermain {
2025-12-29 18:40:15 -05:00
padding: 1rem;
2024-10-05 19:15:34 -05:00
}
#headermain a {
color: blue;
text-decoration: none;
text-transform: uppercase;
}
#headermain a:hover {
text-decoration: underline;
}
2025-09-03 19:35:37 -04:00
#tagline {
font-style: italic;
2024-10-05 19:15:34 -05:00
}
2025-12-28 23:40:17 -05:00
#badges {
display: flex;
flex-flow: wrap;
justify-content: space-around;
}
.badge {
image-rendering: pixelated;
}
2024-10-05 19:15:34 -05:00
nav ul,
footer ul {
padding: 0;
}
nav ul li,
footer ul li {
display: inline;
}
nav ul li + li::before,
footer ul li + li::before {
content: " | ";
}