char.lt-old/static/css/main-layout.css

81 lines
888 B
CSS
Raw Normal View History

2022-01-14 07:02:31 +00:00
html,
body {
margin: 0;
padding: 0;
}
body {
display: flex;
2022-03-08 04:09:02 +00:00
flex-direction: row;
2022-01-14 07:02:31 +00:00
min-height: 100vh;
align-items: center;
}
.page-wrapper {
display: flex;
flex-direction: column;
2023-07-02 16:05:02 +00:00
max-width: 80ch;
width: 80ch;
2022-01-14 07:02:31 +00:00
margin: 0 auto;
2022-03-08 04:09:02 +00:00
}
2022-01-14 07:02:31 +00:00
2023-07-02 16:05:02 +00:00
#about-me {
2022-01-14 07:02:31 +00:00
padding: 1em;
border: 2px solid white;
border-radius: 1em;
2023-07-02 16:05:02 +00:00
margin: 1em 0;
2022-01-14 07:02:31 +00:00
}
header {
display: flex;
flex-direction: row;
justify-content: space-between;
2023-07-02 16:05:02 +00:00
border-bottom: 1px solid white;
2022-01-14 07:02:31 +00:00
}
2023-07-02 16:05:02 +00:00
header > * {
2022-01-14 07:02:31 +00:00
display: flex;
flex-direction: column;
2023-07-02 16:05:02 +00:00
margin-bottom: 0.5rem;
2022-01-14 07:02:31 +00:00
}
main {
flex: 1;
}
footer {
margin-top: 1em;
text-align: center;
}
.hero-image {
2023-07-02 16:05:02 +00:00
height: 8rem;
border-radius: 8px;
2022-01-14 07:02:31 +00:00
}
section + section {
margin-top: 0.5em;
}
2023-07-02 16:05:02 +00:00
h1 {
margin: 0;
margin-bottom: 0.5em;
font-size: 2.2rem;
}
h2 {
2022-01-14 07:02:31 +00:00
margin: 0;
2023-07-02 16:05:02 +00:00
font-size: 1em;
2022-01-14 07:02:31 +00:00
}
p {
margin: 0.5em 0;
}
2022-03-08 04:09:02 +00:00
2023-07-02 16:05:02 +00:00
p + p {
2022-03-08 04:09:02 +00:00
margin-top: 1em;
}