238 lines
4.7 KiB
CSS
238 lines
4.7 KiB
CSS
@import "mdi/style.css";
|
|
|
|
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: #111;
|
|
color: #fff;
|
|
}
|
|
.container--index {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
.discord-users {
|
|
display: flex !important;
|
|
flex-wrap: wrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
padding: 12px !important;
|
|
}
|
|
.discord-user {
|
|
width: 120px;
|
|
text-align: center;
|
|
margin: 4px 2px;
|
|
}
|
|
.discord-user__avatar {
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 100%;
|
|
display: inline-block;
|
|
background-size: 64px;
|
|
box-shadow: 0 3px 7px rgba(17, 17, 17, 0.8);
|
|
}
|
|
.discord-user__name {
|
|
font-style: italic;
|
|
text-shadow: 1px 1px 1px rgba(17, 17, 17, 0.8);
|
|
font-size: 16px;
|
|
word-wrap: break-word;
|
|
}
|
|
.discord-user__tag {
|
|
font-size: 10px;
|
|
color: #888;
|
|
line-height: 14px;
|
|
}
|
|
.flash__link {
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
color: inherit;
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
padding: 4px 8px;
|
|
transition: text-shadow 0.2s;
|
|
}
|
|
.flash__link:hover {
|
|
text-shadow: 0 0 6px #acacac;
|
|
}
|
|
.floater {
|
|
display: block;
|
|
background: rgba(51, 51, 51, 0.5);
|
|
padding: 6px 12px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
|
color: inherit;
|
|
text-decoration: none;
|
|
transition: box-shadow 0.2s, text-shadow 0.2s;
|
|
}
|
|
.floater--link:hover {
|
|
text-shadow: 0 0 6px #acacac;
|
|
}
|
|
.floater:hover {
|
|
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
|
|
}
|
|
.floater:not(:last-child) {
|
|
margin-bottom: 20px;
|
|
}
|
|
.floater__title {
|
|
font-size: 3em;
|
|
line-height: 1.1em;
|
|
font-weight: 500;
|
|
font-style: italic;
|
|
}
|
|
.transitional-2016 .floater__title {
|
|
font-family: "Electrolize", sans-serif;
|
|
font-style: normal;
|
|
line-height: 1.4em;
|
|
}
|
|
.floater__paragraph {
|
|
white-space: normal;
|
|
}
|
|
.floater__paragraph--whois {
|
|
white-space: pre-wrap;
|
|
}
|
|
.platform {
|
|
background: rgba(51, 51, 51, 0.5);
|
|
max-width: 1024px;
|
|
margin: 0 auto;
|
|
min-height: 100px;
|
|
padding: 45px;
|
|
color: #fff;
|
|
}
|
|
.transitional-2016 .platform {
|
|
margin: 5px;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
@media (max-width: 768px) {
|
|
.platform {
|
|
padding: 45px 0;
|
|
}
|
|
}
|
|
.platform__title {
|
|
margin-top: -40px;
|
|
margin-bottom: -30px;
|
|
margin-left: -45px;
|
|
opacity: .1;
|
|
font-weight: 100;
|
|
font-size: 100px;
|
|
line-height: 1em;
|
|
z-index: 0;
|
|
text-transform: lowercase;
|
|
}
|
|
.transitional-2016 .platform__title {
|
|
font-family: "Electrolize", sans-serif;
|
|
margin-left: -35px;
|
|
margin-top: -35px;
|
|
z-index: -1;
|
|
}
|
|
.platform__title:not(:first-child) {
|
|
padding-top: 25px;
|
|
}
|
|
@media (max-width: 768px) {
|
|
.platform__title {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
.satoko__floater {
|
|
text-align: center;
|
|
padding: 10px;
|
|
}
|
|
.satoko__icon {
|
|
font-size: 100px;
|
|
line-height: 1em;
|
|
}
|
|
.whois__form {
|
|
display: flex;
|
|
box-shadow: 0 2px 0.7em rgba(0, 0, 0, 0.3);
|
|
margin-bottom: 20px;
|
|
}
|
|
.whois__input {
|
|
flex-grow: 2;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
color: #FFF;
|
|
font-family: "Exo 2", "Noto Sans", sans-serif;
|
|
border: 1px solid #333333;
|
|
padding: 5px;
|
|
transition: opacity .2s;
|
|
}
|
|
.whois__input[disabled] {
|
|
opacity: .5;
|
|
}
|
|
.whois__button {
|
|
padding: 5px;
|
|
border: 1px solid #333333;
|
|
background: #333333;
|
|
height: 30px;
|
|
width: 30px;
|
|
color: #FFF;
|
|
cursor: pointer;
|
|
transition: opacity .2s;
|
|
}
|
|
.whois__button[disabled] {
|
|
opacity: .5;
|
|
}
|
|
|
|
.accent--flash {
|
|
--accent-colour: rgb(74, 54, 80);
|
|
}
|
|
.accent--flash .platform {
|
|
background: rgba(74, 54, 80, 0.5);
|
|
}
|
|
.accent--flash .floater {
|
|
background: rgba(74, 54, 80, 0.5);
|
|
}
|
|
.accent--flash .floater__paragraph {
|
|
font-size: 1.2em;
|
|
line-height: 1.5em;
|
|
margin: 10px 0;
|
|
}
|
|
.accent--flash a {
|
|
color: inherit;
|
|
}
|
|
|
|
.accent--blog {
|
|
--accent-colour: rgb(45, 153, 64);
|
|
}
|
|
.accent--blog .platform {
|
|
background: rgba(45, 153, 64, 0.5);
|
|
}
|
|
.accent--blog .floater {
|
|
background: rgba(45, 153, 64, 0.5);
|
|
}
|
|
.accent--blog .floater__paragraph {
|
|
font-size: 1.2em;
|
|
line-height: 1.5em;
|
|
margin: 10px 0;
|
|
}
|
|
.accent--blog a {
|
|
color: inherit;
|
|
}
|
|
|
|
.accent--satoko {
|
|
--accent-colour: rgb(118, 70, 117);
|
|
}
|
|
.accent--satoko .platform {
|
|
background: rgba(118, 70, 117, 0.5);
|
|
}
|
|
.accent--satoko .floater {
|
|
background: rgba(118, 70, 117, 0.5);
|
|
}
|
|
|
|
.accent--ninechan {
|
|
--accent-colour: rgb(157, 170, 217);
|
|
}
|
|
.accent--ninechan .platform {
|
|
background: rgba(157, 170, 217, 0.5);
|
|
}
|
|
.accent--ninechan .floater {
|
|
background: rgba(157, 170, 217, 0.5);
|
|
}
|
|
|
|
.accent--kotori {
|
|
--accent-colour: rgb(193, 162, 133);
|
|
}
|
|
.accent--kotori .platform {
|
|
background: rgba(193, 162, 133, 0.5);
|
|
}
|
|
.accent--kotori .floater {
|
|
background: rgba(193, 162, 133, 0.5);
|
|
}
|