102 lines
1.6 KiB
CSS
102 lines
1.6 KiB
CSS
|
|
:root {
|
||
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
||
|
|
font-size: 16px;
|
||
|
|
line-height: 24px;
|
||
|
|
font-weight: 400;
|
||
|
|
|
||
|
|
color: #0f0f0f;
|
||
|
|
background-color: #f6f6f6;
|
||
|
|
|
||
|
|
font-synthesis: none;
|
||
|
|
text-rendering: optimizeLegibility;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
-webkit-text-size-adjust: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
font-weight: 500;
|
||
|
|
color: #646cff;
|
||
|
|
text-decoration: inherit;
|
||
|
|
}
|
||
|
|
a:hover {
|
||
|
|
color: #535bf2;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
display: flex;
|
||
|
|
place-items: center;
|
||
|
|
min-width: 320px;
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-size: 3.2em;
|
||
|
|
line-height: 1.1;
|
||
|
|
}
|
||
|
|
|
||
|
|
button {
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 1px solid transparent;
|
||
|
|
padding: 0.6em 1.2em;
|
||
|
|
font-size: 1em;
|
||
|
|
font-weight: 500;
|
||
|
|
font-family: inherit;
|
||
|
|
background-color: #ffffff;
|
||
|
|
cursor: pointer;
|
||
|
|
transition: border-color 0.25s;
|
||
|
|
}
|
||
|
|
button:hover {
|
||
|
|
border-color: #646cff;
|
||
|
|
}
|
||
|
|
button:focus,
|
||
|
|
button:focus-visible {
|
||
|
|
outline: 4px auto -webkit-focus-ring-color;
|
||
|
|
}
|
||
|
|
|
||
|
|
main {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
input,
|
||
|
|
button {
|
||
|
|
border-radius: 8px;
|
||
|
|
border: 1px solid transparent;
|
||
|
|
padding: 0.6em 1.2em;
|
||
|
|
font-size: 1em;
|
||
|
|
font-weight: 500;
|
||
|
|
font-family: inherit;
|
||
|
|
color: #0f0f0f;
|
||
|
|
background-color: #ffffff;
|
||
|
|
transition: border-color 0.25s;
|
||
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
||
|
|
}
|
||
|
|
|
||
|
|
input {
|
||
|
|
margin-right: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (prefers-color-scheme: dark) {
|
||
|
|
:root {
|
||
|
|
color: #f6f6f6;
|
||
|
|
background-color: #2f2f2f;
|
||
|
|
}
|
||
|
|
|
||
|
|
a:hover {
|
||
|
|
color: #24c8db;
|
||
|
|
}
|
||
|
|
|
||
|
|
input,
|
||
|
|
button {
|
||
|
|
color: #ffffff;
|
||
|
|
background-color: #0f0f0f98;
|
||
|
|
}
|
||
|
|
button:active {
|
||
|
|
background-color: #0f0f0f69;
|
||
|
|
}
|
||
|
|
}
|