emmas.place/style/style.css

232 lines
3.7 KiB
CSS
Raw Normal View History

@font-face {
font-family: lato-regular;
src: url("../site-resources/fonts/lato-regular.woff2");
}
@font-face {
font-family: pacifico;
src: url("../site-resources/fonts/pacifico.woff2");
}
:root {
2024-12-13 18:08:42 +00:00
--background-color: #e0ffcd;
--body-background-color: #ffebbb;
--scroll-gutter: #65eeb788;
--scroll-bar: #588c7388;
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
}
body {
height: 100vh;
width: auto;
2024-12-13 18:08:42 +00:00
background-color: var(--body-background-color);
background-image: url("../img/site/assets/sakura.webp");
2024-12-12 13:06:46 +00:00
display: grid;
2024-12-14 20:55:09 +00:00
grid-template-columns: 14vw 60vw;
grid-template-rows: 6vh 88vh 5vh;
2024-12-12 13:06:46 +00:00
justify-content: center;
overflow: hidden;
}
h1, h2, h3, h4, h5, h6, p, ul, figcaption, details {
margin: 0.5rem;
2024-12-13 20:18:05 +00:00
}
2024-12-13 19:22:44 +00:00
main, nav {
2024-12-19 22:23:01 +00:00
padding-top: 0.5rem;
2024-12-13 20:18:05 +00:00
padding-bottom: 0.5rem;
font-family: system-ui;
letter-spacing: 0.05rem;
2024-12-13 19:22:44 +00:00
}
main {
2024-12-13 18:08:42 +00:00
background-color: var(--background-color);
2024-12-14 21:48:55 +00:00
height: 87vh;
2024-12-13 19:22:44 +00:00
width: 60vw;
padding-left: 2.5rem;
2024-12-13 21:30:03 +00:00
overflow: auto;
scrollbar-width: thin;
scrollbar-color: var(--scroll-gutter) var(--scroll-bar);
2024-12-13 19:22:44 +00:00
grid-column: 2/3;
grid-row: 2/3;
2024-12-14 21:48:55 +00:00
align-self: end;
}
header {
2024-12-13 18:08:42 +00:00
background-color: var(--background-color);
grid-row: 1/2;
2024-12-13 19:22:44 +00:00
grid-column: 1/3;
2024-12-14 21:48:55 +00:00
height: 6vh;
2024-12-14 20:55:09 +00:00
width: 74vw;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
2024-12-13 18:08:42 +00:00
border-bottom: 10px solid;
border-image-slice: 1;
border-width: 5px;
border-image-source: linear-gradient(to right, #D60270, #9B4F96, #0038A8);
2024-12-14 21:48:55 +00:00
font-size: 1.4rem;
2024-12-20 00:26:41 +00:00
margin-top: 0.43rem;
}
footer {
2024-12-13 18:08:42 +00:00
background-color: var(--background-color);
2024-12-12 13:06:46 +00:00
grid-row: 3/4;
2024-12-13 19:22:44 +00:00
grid-column: 1/3;
2024-12-12 13:06:46 +00:00
height: 5vh;
2024-12-14 20:55:09 +00:00
width: 74vw;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
border-top: 10px solid;
border-image-slice: 1;
border-width: 5px;
2024-12-18 10:14:02 +00:00
border-image-source: linear-gradient(to right, #595959 0 35%, #CF7280 41%, #EEDE77 47%, #E8E8E8 53%, #7BC2E0 59%, #3BB07D 65%, #595959 71%);
font-family: system-ui;
2024-12-14 21:48:55 +00:00
font-size: 1.3rem;
letter-spacing: 0.05rem;
}
2024-12-13 19:22:44 +00:00
header, footer {
display: flex;
justify-content: center;
2024-12-14 21:48:55 +00:00
align-items: center;
flex-wrap: wrap;
gap: 0.75rem;
2024-12-13 19:22:44 +00:00
}
nav {
2024-12-13 18:08:42 +00:00
background-color: var(--background-color);
2024-12-12 13:06:46 +00:00
grid-row: 2/3;
2024-12-13 19:22:44 +00:00
grid-column: 1/2;
2024-12-12 13:06:46 +00:00
justify-self: end;
2024-12-14 21:48:55 +00:00
align-self: end;
2024-12-14 20:55:09 +00:00
width: 14vw;
2024-12-14 21:48:55 +00:00
height: 87vh;
2024-12-14 07:28:19 +00:00
padding-left: 0.75rem;
2024-12-13 18:08:42 +00:00
border-right: 10px solid;
border-image-slice: 1;
border-width: 5px;
2024-12-18 10:14:02 +00:00
border-image-source: linear-gradient(to bottom, #FCF434, #FFFFFF, #9C59D1, #2C2C2C);
}
section {
2024-12-12 13:06:46 +00:00
width: 55vw;
}
2024-12-13 21:30:03 +00:00
a {
color: #6e5773;
text-decoration: none;
}
a:visited {
color: #9a47cb;
}
a:hover {
color: #4f323b;
text-decoration: underline;
}
ul {
list-style-type: none;
}
nav ul li {
padding-bottom: 0.5rem;
}
nav ul li a {
font-size: 1rem;
}
main section {
font-size: 1rem;
}
main section p {
line-height: 1.25;
}
main section ul li {
padding-bottom: 0.25rem;
}
.logo {
font-family: pacifico;
font-size: 1.35rem;
letter-spacing: .1rem;
}
.motto {
font-family: lato-regular;
letter-spacing: .05rem;
}
.status {
height: 120px;
margin-top: 0.5rem;
2024-12-14 14:07:41 +00:00
margin-bottom: 0.5rem;
}
2024-12-13 21:30:03 +00:00
.status .statuslol_container .statuslol {
background: var(--background-color) !important;
}
2024-12-14 01:08:01 +00:00
.picrew-gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
margin: 1.75rem;
}
.picrew-gallery img {
border: 4px solid #17b794;
border-radius: 5%;
2024-12-14 01:08:01 +00:00
}
.picrew-gallery, .picrew-gallery-header {
text-align: center;
}
.photo-gallery-header {
text-align: center;
}
.photography-gallery {
margin-top: 1rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.gallery-text {
text-align: center;
}
.gallery-text-left {
text-align: left;
}
.nested-list {
list-style-type: disc;
margin-left: 2rem;
}