58 lines
1.0 KiB
CSS
58 lines
1.0 KiB
CSS
|
:root {
|
||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
||
|
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
||
|
"Helvetica Neue", sans-serif;
|
||
|
font-size: 16px;
|
||
|
line-height: 24px;
|
||
|
font-weight: 400;
|
||
|
color-scheme: light dark;
|
||
|
color: black;
|
||
|
|
||
|
background-color: #e5e5f7a5;
|
||
|
|
||
|
font-synthesis: none;
|
||
|
text-rendering: optimizeLegibility;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
}
|
||
|
|
||
|
* {
|
||
|
user-select: none;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
font-weight: 500;
|
||
|
color: #646cff;
|
||
|
text-decoration: inherit;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #535bf2;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
min-height: 100vh;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
padding: 10px;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
background-color: #003566;
|
||
|
color: white;
|
||
|
|
||
|
text-align: center;
|
||
|
}
|