work.suroh.tk/css/master.css

58 lines
931 B
CSS

/* PAGE STYLES */
@import url(https://cdn.jsdelivr.net/gh/tonsky/FiraCode@1.206/distr/fira_code.css);
/* --> BASE STYLES <-- */
body {
font-family: 'fira code', monospace;
font-size: 1.2em;
color: #1e1e3cff;
margin: 0;
padding: 0;
}
a, a:visited {
color: #1e1e3cff;
text-decoration: none;
}
/* --> NAVIGATION <-- */
nav {
margin: 20px;
}
nav>span {
font-size: 1.5em;
color: #1e1e3c33;
transition: color ease 0.1s;
}
nav>span:hover {
color: #1e1e3cff;
transition: color ease 0.1s;
cursor: pointer;
}
h1#menuItem {
position: absolute;
left: 20px;
bottom: 20px;
margin: 0;
padding: 0;
font-size: 31vw;
opacity: 0;
transform: translateY(300px);
transition: opacity ease-in-out 0.1s, transform ease-in-out 0.1s;
}
h1#menuItem.active {
opacity: 1 !important;
transform: translateY(0px) !important;
}
/* --> MAINPAGE CONSTRUCTION <-- */
section#content {
margin: 40px 20px;
}