61 lines
1 KiB
CSS
61 lines
1 KiB
CSS
:root {
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 400;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 0;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
background-color: #F2F6F5;
|
|
z-index: 10;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
width: 100%;
|
|
font-size: 20px;
|
|
margin-top: 20px;
|
|
background-color: #05345f;
|
|
font-weight: 700;
|
|
color: white;
|
|
padding: 10px;
|
|
-webkit-appearance: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
cursor: pointer;
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
body a {
|
|
text-decoration: none;
|
|
color: #06345F;
|
|
border-bottom: 3px solid #06345F;
|
|
}
|
|
|
|
body a:hover {
|
|
background-color: #06345F;
|
|
color: #ffffff;
|
|
}
|