28 lines
No EOL
452 B
CSS
28 lines
No EOL
452 B
CSS
body {
|
|
background-color: #013338;
|
|
color: #ffffff;
|
|
align-content: center;
|
|
text-align: center;
|
|
}
|
|
h1 {
|
|
font-size: 50px;
|
|
margin-bottom: -5px;
|
|
}
|
|
|
|
button {
|
|
font-size: 20px;
|
|
margin-top: 50px;
|
|
color: white;
|
|
background-color: #010a38;
|
|
border-radius: 30px;
|
|
padding: 20px 50px;
|
|
border: 0;
|
|
}
|
|
button:hover {
|
|
background-color: #021b9f;
|
|
cursor: pointer;
|
|
}
|
|
|
|
* {
|
|
cursor: url("/static/cursor.png"), auto;
|
|
} |