flash.moe/public/assets/makai22.css
2023-03-08 00:43:58 +00:00

156 lines
2.9 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative;
outline-style: none;
}
:root {
--site-max-width: 1200px;
--site-border-radius: 10px;
}
html, body {
width: 100%;
height: 100%;
scrollbar-color: #4a3650 #111;
}
.makai22 {
width: 100%;
height: 100%;
background-color: #111;
color: #fff;
font-size: 16px;
line-height: 24px;
font-family: Tahoma, Geneva, 'Dejavu Sans', Arial, Helvetica, sans-serif;
}
.head {
padding: 10px 0;
}
.head-float {
overflow: hidden;
margin: 0 auto;
max-width: var(--site-max-width);
width: 100%;
border-radius: var(--site-border-radius);
box-shadow: 0 1px 5px #222;
}
.head-float-bg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
overflow: hidden;
}
.head-float-bg img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: blur(20px) brightness(80%);
transform: scale(1.2);
opacity: 1;
transition: opacity .5s;
pointer-events: none;
}
.head-float-fg {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
.head-float-fg-logo {
flex: 1 1 auto;
padding: 30px 30px 20px;
}
.head-float-fg-nav {
flex: 0 0 auto;
}
.fw-logo {
font-family: 'Electrolize', Verdana, 'Dejavu Sans', Arial, Helvetica, sans-serif;
font-size: 3em;
line-height: 1.2em;
filter: drop-shadow(0 1px 5px #000);
}
.fw-logo-link {
color: transparent;
text-decoration: none;
display: inline-flex;
flex: 0 0 auto;
}
.fw-logo-flash {
background-image: linear-gradient(180deg, #eee 0%, #ddd 50%, #ccc 50%, #aaa 100%);
background-clip: text;
-webkit-background-clip: text;
}
.fw-logo-wave {
background-image: linear-gradient(0deg, #281430 0%, #392540 50%, #4a3650 50%, #6c5871 100%);
-webkit-background-clip: text;
}
.topnav {
display: flex;
margin: 0 8px;
}
.topnav-item {
display: block;
margin: 0 2px 10px;
padding: 5px;
text-decoration: none;
color: #fff;
min-width: 100px;
text-align: center;
border-radius: var(--site-border-radius);
text-shadow: 0 1px 5px #000;
transition: background-color .1s;
}
.topnav-item:hover,
.topnav-item:focus {
background-color: #fff1;
}
.topnav-item:active {
background-color: #8881;
}
.layout {
max-width: var(--site-max-width);
margin: 0 auto;
display: flex;
}
.layout-main {
flex: 1 1 auto;
}
.layout-spacer {
flex: 0 0 auto;
width: 5px;
}
.layout-side {
flex: 0 0 auto;
width: 300px;
}
.copyright {
font-size: 11px;
line-height: 1.5em;
text-align: center;
color: #555;
}
.container {
width: 100%;
border-radius: var(--site-border-radius);
overflow: hidden;
margin: 5px 0;
box-shadow: 0 1px 5px #222;
background-color: #1f1f1f;
}