blog/themes/minth/assets/css/main.css

45 lines
568 B
CSS
Raw Permalink Normal View History

2024-07-29 12:54:31 +00:00
html {
min-height: 100%;
}
body {
2024-07-29 12:54:31 +00:00
overflow-x: hidden;
color: #222;
line-height: 1.5;
margin: 1rem;
2024-07-29 12:54:31 +00:00
font-family: monospace;
2024-09-28 18:24:40 +00:00
background: #d6d6d6;
2024-07-29 12:54:31 +00:00
}
@media only screen and (min-width: 800px) {
.body {
font-size: 14px;
}
}
@media only screen and (max-width: 800px) {
.body {
font-size: 10px;
}
}
header {
margin-bottom: 1rem;
}
footer {
border-top: 1px solid #222;
margin-top: 1rem;
}
a {
2024-09-28 18:24:40 +00:00
opacity: .6;
2024-08-13 12:21:51 +00:00
}
a:hover {
2024-09-28 18:24:40 +00:00
opacity: 1;
2024-07-29 12:54:31 +00:00
}
hr {
2024-09-28 18:24:40 +00:00
color: black !important;
background-color: black !important;
}