192 lines
No EOL
3 KiB
CSS
192 lines
No EOL
3 KiB
CSS
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap");
|
|
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
.light {
|
|
color: black !important;
|
|
background: white !important;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.title {
|
|
font-size: 5vh;
|
|
margin: 0;
|
|
text-align: center;
|
|
padding: 30px 0 0 0;
|
|
}
|
|
|
|
.toggle {
|
|
cursor: -webkit-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 3vh;
|
|
bottom: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
sub {
|
|
font-size: 1vh;
|
|
}
|
|
|
|
.center {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
padding: 90px 0 0 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
body.light a {
|
|
color: black;
|
|
}
|
|
|
|
#box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 25px solid white;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
-webkit-transition: border-color 0.5s ease-in-out;
|
|
transition: border-color 0.5s ease-in-out;
|
|
}
|
|
|
|
body.light #box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 25px solid black;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
-webkit-transition: border-color 0.5s ease-in-out;
|
|
transition: border-color 0.5s ease-in-out;
|
|
}
|
|
|
|
.monty:hover {
|
|
color: #ff6d62;
|
|
}
|
|
|
|
.monty:hover ~ #box {
|
|
border-color: #ff6d62;
|
|
}
|
|
|
|
.monty::-moz-selection {
|
|
color: white;
|
|
background-color: #ff6d62;
|
|
}
|
|
|
|
.monty::selection {
|
|
color: white;
|
|
background-color: #ff6d62;
|
|
}
|
|
|
|
body.light .monty::-moz-selection {
|
|
color: black;
|
|
background-color: #ff877c;
|
|
}
|
|
|
|
body.light .monty::selection {
|
|
color: black;
|
|
background-color: #ff877c;
|
|
}
|
|
|
|
.ryden:hover {
|
|
color: #a8fd77;
|
|
}
|
|
|
|
.ryden:hover ~ #box {
|
|
border-color: #a8fd77;
|
|
}
|
|
|
|
.ryden::-moz-selection {
|
|
color: white;
|
|
background-color: #a8fd77;
|
|
}
|
|
|
|
.ryden::selection {
|
|
color: white;
|
|
background-color: #a8fd77;
|
|
}
|
|
|
|
body.light .ryden::-moz-selection {
|
|
color: black;
|
|
background-color: #c2ff91;
|
|
}
|
|
|
|
body.light .ryden::selection {
|
|
color: black;
|
|
background-color: #c2ff91;
|
|
}
|
|
|
|
.thaldrin:hover {
|
|
color: #ff995d;
|
|
}
|
|
|
|
.thaldrin:hover ~ #box {
|
|
border-color: #ff995d;
|
|
}
|
|
|
|
.thaldrin::-moz-selection {
|
|
color: white;
|
|
background-color: #ff995d;
|
|
}
|
|
|
|
.thaldrin::selection {
|
|
color: white;
|
|
background-color: #ff995d;
|
|
}
|
|
|
|
body.light .thaldrin::-moz-selection {
|
|
color: black;
|
|
background-color: #ffb377;
|
|
}
|
|
|
|
body.light .thaldrin::selection {
|
|
color: black;
|
|
background-color: #ffb377;
|
|
}
|
|
|
|
.monty {
|
|
font-size: 6vh;
|
|
}
|
|
|
|
.ryden {
|
|
font-size: 6vh;
|
|
}
|
|
|
|
.thaldrin {
|
|
font-size: 6vh;
|
|
}
|
|
/*# sourceMappingURL=lore.css.map */ |