68 lines
746 B
CSS
68 lines
746 B
CSS
body {
|
|
background-color: #121212;
|
|
color: white;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
div.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
flex-direction: column;
|
|
}
|
|
|
|
h1 h2 {
|
|
margin: 5px;
|
|
}
|
|
|
|
p.description {
|
|
color: grey;
|
|
margin: 15px;
|
|
}
|
|
|
|
p.error {
|
|
color: red;
|
|
}
|
|
|
|
a.btn {
|
|
color: white;
|
|
background-color: red;
|
|
border-radius: 10px;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
p {
|
|
margin: 5px;
|
|
}
|
|
}
|
|
|
|
a.btn:hover {
|
|
|
|
}
|
|
|
|
a.btn:active {
|
|
|
|
}
|
|
|
|
a.spotify {
|
|
background-color: #1ED760;
|
|
}
|
|
|
|
a.spotify:hover {
|
|
background-color: #18ac4d;
|
|
}
|
|
|
|
a.spotify:active {
|
|
background-color: #159643;
|
|
}
|
|
|
|
img.logo-img {
|
|
margin: 5px;
|
|
}
|
|
|