karnov.club/styles.css

53 lines
872 B
CSS
Raw Normal View History

2022-09-15 13:56:19 +00:00
html, body {
background-color: #fdfdfd;
margin: 0;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
}
main {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
2019-07-19 03:46:14 +00:00
main p { line-height: 1.5; }
2022-09-15 13:56:19 +00:00
main > * {
width: 50%;
max-width: 500px;
}
img { width: 100%; }
2019-07-19 03:46:14 +00:00
h1 { text-align: center; }
2022-09-15 13:56:19 +00:00
main > section > figure {
display: flex;
align-items: center;
justify-content: center;
}
2023-05-07 19:42:56 +00:00
a { font-weight: bold; text-decoration: underline wavy; }
2022-09-15 13:56:19 +00:00
2024-10-07 05:02:42 +00:00
strong, a, hr { color: #d95b00; }
2022-09-15 13:56:19 +00:00
hr { border-style: dashed; }
@media only screen and (max-width: 600px) {
main {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
flex-direction: column;
justify-content: normal;
}
main > * {
width: 80%;
}
}