239 lines
4.0 KiB
CSS
239 lines
4.0 KiB
CSS
@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 {
|
|
--background-color: #ffe9e3;
|
|
--body-background-color: #ffcccc;
|
|
--scroll-gutter: #eb76ff88;
|
|
--scroll-bar: #ffa8ec88;
|
|
--link-hover: #FF1493;
|
|
--link-visited: #8A2BE2;
|
|
--link-color: #4B0082;
|
|
--border-color: #DB7093;
|
|
|
|
}
|
|
|
|
*, *::before, *::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
height: 100vh;
|
|
width: auto;
|
|
background-color: var(--body-background-color);
|
|
background-image: url("../img/site/assets/sakura.webp");
|
|
display: grid;
|
|
grid-template-columns: 20vw 60vw;
|
|
grid-template-rows: 6vh 85vh 6vh;
|
|
justify-content: center;
|
|
align-items: end;
|
|
align-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, p, ul, figcaption, details {
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
main, nav {
|
|
padding-bottom: 0.5rem;
|
|
font-family: system-ui;
|
|
letter-spacing: 0.05rem;
|
|
}
|
|
|
|
main {
|
|
background-color: var(--background-color);
|
|
height: 85vh;
|
|
width: 60vw;
|
|
padding-left: 2.5rem;
|
|
overflow: auto;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--scroll-gutter) var(--scroll-bar);
|
|
grid-column: 2/3;
|
|
grid-row: 2/3;
|
|
align-self: end;
|
|
padding-top: 0.5rem;
|
|
}
|
|
|
|
header {
|
|
background-color: var(--background-color);
|
|
grid-row: 1/2;
|
|
grid-column: 1/3;
|
|
height: 6vh;
|
|
width: 80vw;
|
|
border-top-left-radius: 15px;
|
|
border-top-right-radius: 15px;
|
|
border-bottom: 10px solid;
|
|
border-image-slice: 1;
|
|
border-width: 5px;
|
|
border-image-source: linear-gradient(to right, #D60270 0 33%, #9B4F96 33% 66%, #0038A8 66%);
|
|
font-size: 1.4rem;
|
|
margin-top: 0.43rem;
|
|
}
|
|
|
|
footer {
|
|
background-color: var(--background-color);
|
|
grid-row: 3/4;
|
|
grid-column: 1/3;
|
|
height: 6vh;
|
|
width: 80vw;
|
|
border-bottom-left-radius: 15px;
|
|
border-bottom-right-radius: 15px;
|
|
border-top: 10px solid;
|
|
border-image-slice: 1;
|
|
border-width: 5px;
|
|
border-image-source: linear-gradient(to right, #595959 0 35%, #CF7280 35% 41%, #EEDE77 41% 47%, #E8E8E8 47% 53%, #7BC2E0 53% 59%, #3BB07D 59% 65%, #595959 65% 71%);
|
|
font-family: system-ui;
|
|
font-size: 1.3rem;
|
|
letter-spacing: 0.05rem;
|
|
}
|
|
|
|
header, footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
nav {
|
|
background-color: var(--background-color);
|
|
grid-row: 2/3;
|
|
grid-column: 1/2;
|
|
justify-self: end;
|
|
align-self: end;
|
|
width: 20vw;
|
|
height: 85vh;
|
|
padding-top: 0.75rem;
|
|
padding-left: 1.5rem;
|
|
border-right: 10px solid;
|
|
border-image-slice: 1;
|
|
border-width: 5px;
|
|
border-image-source: linear-gradient(to bottom, #5BCEFA 0 20%, #F5A9B8 20% 40%, #FFFFFF 40% 60%, #F5A9B8 60% 80%, #5BCEFA 80%);
|
|
}
|
|
|
|
section {
|
|
width: 55vw;
|
|
}
|
|
|
|
a {
|
|
color: var(--link-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: var(--link-visited);
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--link-hover);
|
|
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;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.status .statuslol_container .statuslol {
|
|
background: var(--background-color) !important;
|
|
}
|
|
|
|
.picrew-gallery {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin: 1.75rem;
|
|
}
|
|
|
|
.picrew-gallery img {
|
|
border: 4px solid var(--border-color);
|
|
border-radius: 5%;
|
|
}
|
|
|
|
.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;
|
|
}
|