38 lines
857 B
SCSS
38 lines
857 B
SCSS
@mixin background() {
|
|
width: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
color: whitesmoke;
|
|
min-height: 100vh;
|
|
background-color: #282c34;
|
|
}
|
|
|
|
@mixin blurred() {
|
|
-webkit-filter: blur(10px);
|
|
-moz-filter: blur(10px);
|
|
-o-filter: blur(10px);
|
|
-ms-filter: blur(10px);
|
|
filter: blur(10px);
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
-webkit-user-select: none; /* Safari */
|
|
-khtml-user-select: none; /* Konqueror HTML */
|
|
-moz-user-select: none; /* Old versions of Firefox */
|
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
user-select: none; /* Non-prefixed version, currently
|
|
supported by Chrome, Edge, Opera and Firefox */
|
|
}
|
|
|
|
a:link,
|
|
a:visited,
|
|
a:hover,
|
|
a:active {
|
|
color: #61dafb;
|
|
}
|
|
|
|
table td {
|
|
padding: 0.25em;
|
|
}
|