494 lines
No EOL
7.4 KiB
CSS
494 lines
No EOL
7.4 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: 13vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 3vh;
|
|
bottom: 50px;
|
|
text-align: center;
|
|
cursor: -webkit-grab;
|
|
cursor: grab;
|
|
}
|
|
|
|
sub {
|
|
font-size: 1vh;
|
|
}
|
|
|
|
.center {
|
|
height: 100%;
|
|
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;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: white;
|
|
display: inline-block;
|
|
}
|
|
|
|
svg {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body.light a {
|
|
color: black;
|
|
}
|
|
|
|
#box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 3vh 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;
|
|
}
|
|
|
|
body.light #box {
|
|
position: absolute;
|
|
z-index: 999;
|
|
border: 3vh 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;
|
|
}
|
|
|
|
.twitter:hover #box,
|
|
.twitter:focus #box {
|
|
border-color: #1da1f2;
|
|
}
|
|
|
|
a.twitter {
|
|
fill: #1da1f2 !important;
|
|
color: #1da1f2 !important;
|
|
}
|
|
|
|
a.twitter.light {
|
|
fill: #1da1f2 !important;
|
|
color: #1da1f2 !important;
|
|
}
|
|
|
|
.twitter::-moz-selection {
|
|
color: white;
|
|
background-color: #1da1f2;
|
|
}
|
|
|
|
.twitter::selection {
|
|
color: white;
|
|
background-color: #1da1f2;
|
|
}
|
|
|
|
body.light .twitter::-moz-selection {
|
|
color: black;
|
|
background-color: #37bbff;
|
|
}
|
|
|
|
body.light .twitter::selection {
|
|
color: black;
|
|
background-color: #37bbff;
|
|
}
|
|
|
|
.keybase:hover #box,
|
|
.keybase:focus #box {
|
|
border-color: #33a0ff;
|
|
}
|
|
|
|
a.keybase {
|
|
fill: #33a0ff !important;
|
|
color: #33a0ff !important;
|
|
}
|
|
|
|
a.keybase.light {
|
|
fill: #33a0ff !important;
|
|
color: #33a0ff !important;
|
|
}
|
|
|
|
.keybase::-moz-selection {
|
|
color: white;
|
|
background-color: #33a0ff;
|
|
}
|
|
|
|
.keybase::selection {
|
|
color: white;
|
|
background-color: #33a0ff;
|
|
}
|
|
|
|
body.light .keybase::-moz-selection {
|
|
color: black;
|
|
background-color: #4dbaff;
|
|
}
|
|
|
|
body.light .keybase::selection {
|
|
color: black;
|
|
background-color: #4dbaff;
|
|
}
|
|
|
|
.discord:hover #box,
|
|
.discord:focus #box {
|
|
border-color: #7289da;
|
|
}
|
|
|
|
a.discord {
|
|
fill: #7289da !important;
|
|
color: #7289da !important;
|
|
}
|
|
|
|
a.discord.light {
|
|
fill: #7289da !important;
|
|
color: #7289da !important;
|
|
}
|
|
|
|
.discord::-moz-selection {
|
|
color: white;
|
|
background-color: #7289da;
|
|
}
|
|
|
|
.discord::selection {
|
|
color: white;
|
|
background-color: #7289da;
|
|
}
|
|
|
|
body.light .discord::-moz-selection {
|
|
color: black;
|
|
background-color: #8ca3f4;
|
|
}
|
|
|
|
body.light .discord::selection {
|
|
color: black;
|
|
background-color: #8ca3f4;
|
|
}
|
|
|
|
.mastodon:hover #box,
|
|
.mastodon:focus #box {
|
|
border-color: #3088d4;
|
|
}
|
|
|
|
a.mastodon {
|
|
fill: #3088d4 !important;
|
|
color: #3088d4 !important;
|
|
}
|
|
|
|
a.mastodon.light {
|
|
fill: #3088d4 !important;
|
|
color: #3088d4 !important;
|
|
}
|
|
|
|
.mastodon::-moz-selection {
|
|
color: white;
|
|
background-color: #3088d4;
|
|
}
|
|
|
|
.mastodon::selection {
|
|
color: white;
|
|
background-color: #3088d4;
|
|
}
|
|
|
|
body.light .mastodon::-moz-selection {
|
|
color: black;
|
|
background-color: #4aa2ee;
|
|
}
|
|
|
|
body.light .mastodon::selection {
|
|
color: black;
|
|
background-color: #4aa2ee;
|
|
}
|
|
|
|
.twitch:hover #box,
|
|
.twitch:focus #box {
|
|
border-color: #6441a4;
|
|
}
|
|
|
|
a.twitch {
|
|
fill: #6441a4 !important;
|
|
color: #6441a4 !important;
|
|
}
|
|
|
|
a.twitch.light {
|
|
fill: #6441a4 !important;
|
|
color: #6441a4 !important;
|
|
}
|
|
|
|
.twitch::-moz-selection {
|
|
color: white;
|
|
background-color: #6441a4;
|
|
}
|
|
|
|
.twitch::selection {
|
|
color: white;
|
|
background-color: #6441a4;
|
|
}
|
|
|
|
body.light .twitch::-moz-selection {
|
|
color: black;
|
|
background-color: #7e5bbe;
|
|
}
|
|
|
|
body.light .twitch::selection {
|
|
color: black;
|
|
background-color: #7e5bbe;
|
|
}
|
|
|
|
.gitdab:hover #box,
|
|
.gitdab:focus #box {
|
|
border-color: #faacb7;
|
|
}
|
|
|
|
a.gitdab {
|
|
fill: #faacb7 !important;
|
|
color: #faacb7 !important;
|
|
}
|
|
|
|
a.gitdab.light {
|
|
fill: #faacb7 !important;
|
|
color: #faacb7 !important;
|
|
}
|
|
|
|
.gitdab::-moz-selection {
|
|
color: white;
|
|
background-color: #faacb7;
|
|
}
|
|
|
|
.gitdab::selection {
|
|
color: white;
|
|
background-color: #faacb7;
|
|
}
|
|
|
|
body.light .gitdab::-moz-selection {
|
|
color: black;
|
|
background-color: #ffc6d1;
|
|
}
|
|
|
|
body.light .gitdab::selection {
|
|
color: black;
|
|
background-color: #ffc6d1;
|
|
}
|
|
|
|
.github:hover #box,
|
|
.github:focus #box {
|
|
border-color: #333;
|
|
}
|
|
|
|
a.github {
|
|
fill: #333 !important;
|
|
color: #333 !important;
|
|
}
|
|
|
|
a.github.light {
|
|
fill: #333 !important;
|
|
color: #333 !important;
|
|
}
|
|
|
|
.github::-moz-selection {
|
|
color: white;
|
|
background-color: #333;
|
|
}
|
|
|
|
.github::selection {
|
|
color: white;
|
|
background-color: #333;
|
|
}
|
|
|
|
body.light .github::-moz-selection {
|
|
color: black;
|
|
background-color: #4d4d4d;
|
|
}
|
|
|
|
body.light .github::selection {
|
|
color: black;
|
|
background-color: #4d4d4d;
|
|
}
|
|
|
|
.gitlab:hover #box,
|
|
.gitlab:focus #box {
|
|
border-color: #e24329;
|
|
}
|
|
|
|
a.gitlab {
|
|
fill: #e24329 !important;
|
|
color: #e24329 !important;
|
|
}
|
|
|
|
a.gitlab.light {
|
|
fill: #e24329 !important;
|
|
color: #e24329 !important;
|
|
}
|
|
|
|
.gitlab::-moz-selection {
|
|
color: white;
|
|
background-color: #e24329;
|
|
}
|
|
|
|
.gitlab::selection {
|
|
color: white;
|
|
background-color: #e24329;
|
|
}
|
|
|
|
body.light .gitlab::-moz-selection {
|
|
color: black;
|
|
background-color: #fc5d43;
|
|
}
|
|
|
|
body.light .gitlab::selection {
|
|
color: black;
|
|
background-color: #fc5d43;
|
|
}
|
|
|
|
a svg {
|
|
max-width: 4ch;
|
|
}
|
|
|
|
.socials {
|
|
font-size: 2vh;
|
|
text-align: center;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
divide {
|
|
display: block;
|
|
height: 1vh;
|
|
border: 0;
|
|
border-top: 0px solid rgba(204, 204, 204, 0);
|
|
margin: 1vh 0;
|
|
padding: 1vh;
|
|
}
|
|
|
|
.portfolio:hover {
|
|
color: #ff6a5f;
|
|
}
|
|
|
|
.portfolio:hover ~ #box {
|
|
border-color: #ff6a5f;
|
|
}
|
|
|
|
.portfolio::-moz-selection {
|
|
color: white;
|
|
background-color: #ff6a5f;
|
|
}
|
|
|
|
.portfolio::selection {
|
|
color: white;
|
|
background-color: #ff6a5f;
|
|
}
|
|
|
|
body.light .portfolio::-moz-selection {
|
|
color: black;
|
|
background-color: #ff8479;
|
|
}
|
|
|
|
body.light .portfolio::selection {
|
|
color: black;
|
|
background-color: #ff8479;
|
|
}
|
|
|
|
.portfolio {
|
|
font-size: 6vh;
|
|
}
|
|
|
|
.lore:hover {
|
|
color: #92a9f3;
|
|
}
|
|
|
|
.lore:hover ~ #box {
|
|
border-color: #92a9f3;
|
|
}
|
|
|
|
.lore::-moz-selection {
|
|
color: white;
|
|
background-color: #92a9f3;
|
|
}
|
|
|
|
.lore::selection {
|
|
color: white;
|
|
background-color: #92a9f3;
|
|
}
|
|
|
|
body.light .lore::-moz-selection {
|
|
color: black;
|
|
background-color: #acc3ff;
|
|
}
|
|
|
|
body.light .lore::selection {
|
|
color: black;
|
|
background-color: #acc3ff;
|
|
}
|
|
|
|
.lore {
|
|
font-size: 6vh;
|
|
}
|
|
|
|
.art:hover {
|
|
color: #c974da;
|
|
}
|
|
|
|
.art:hover ~ #box {
|
|
border-color: #c974da;
|
|
}
|
|
|
|
.art::-moz-selection {
|
|
color: white;
|
|
background-color: #c974da;
|
|
}
|
|
|
|
.art::selection {
|
|
color: white;
|
|
background-color: #c974da;
|
|
}
|
|
|
|
body.light .art::-moz-selection {
|
|
color: black;
|
|
background-color: #e38ef4;
|
|
}
|
|
|
|
body.light .art::selection {
|
|
color: black;
|
|
background-color: #e38ef4;
|
|
}
|
|
|
|
.art {
|
|
font-size: 6vh;
|
|
}
|
|
/*# sourceMappingURL=main.css.map */ |