mirror of
https://github.com/mue/mue.git
synced 2026-07-16 13:34:03 +02:00
61 lines
2.4 KiB
SCSS
61 lines
2.4 KiB
SCSS
/*
|
|
█████████████████████████████████████████████████████████████
|
|
██ ██
|
|
██ ███ ███ ██ ██ ███████ ██
|
|
██ ████ ████ ██ ██ ██ ██
|
|
██ ██ ████ ██ ██ ██ █████ ██
|
|
██ ██ ██ ██ ██ ██ ██ ██
|
|
██ ██ ██ ██████ ███████ ██
|
|
██ ██
|
|
██ ██
|
|
██ Copyright 2018-2019 David Ralph (ohlookitsderpy) ██
|
|
██ Licensed under MIT ██
|
|
██ GitHub: https://github.com/ohlookitsderpy/Mue ██
|
|
██ ██
|
|
██ Special thanks to contributors! <3 ██
|
|
█████████████████████████████████████████████████████████████
|
|
*/
|
|
|
|
/* Body */
|
|
html, body { height: 100%; }
|
|
body {
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
background-size: cover;
|
|
background-position: 50%;
|
|
background-color: black; /* Prevent white flash on page load */
|
|
|
|
font-family: 'Roboto';
|
|
color: white;
|
|
|
|
overflow: hidden;
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
|
|
}
|
|
|
|
/* Font */
|
|
@font-face {
|
|
font-family: 'Roboto';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Roboto'), local('Roboto-Regular'),
|
|
url('../font/roboto-v18-latin-regular.woff2') format('woff2');
|
|
}
|
|
|
|
/* Shadow */
|
|
:root {
|
|
--shadow-color: #111111CC;
|
|
}
|
|
|
|
.greeting,
|
|
time,
|
|
.quote {
|
|
filter: drop-shadow(var(--shadow-shift) var(--shadow-shift) 0 var(--shadow-color));
|
|
} |