2022-04-03 14:32:46 +00:00
|
|
|
body {
|
|
|
|
font-family: Sen-Regular, sans-serif;
|
|
|
|
background-color: #00202f;
|
|
|
|
color: #97d4c8;
|
|
|
|
}
|
|
|
|
.container {
|
|
|
|
padding: 10px;
|
|
|
|
min-width: 300px;
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
2022-05-31 08:45:25 +00:00
|
|
|
.h3 {
|
|
|
|
font-family: Sen-bold, sans-serif;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
2022-04-03 14:32:46 +00:00
|
|
|
hr {
|
|
|
|
height: 1px;
|
|
|
|
color: white;
|
|
|
|
background-color: white;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
#download {
|
|
|
|
text-align: center
|
|
|
|
}
|
|
|
|
#status-icon {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
.logo {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.logo img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.logo span {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.login-form {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
.login-form label,
|
|
|
|
.login-form input {
|
|
|
|
margin: 3px 0;
|
|
|
|
}
|
|
|
|
.submit {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.submit button,
|
|
|
|
.youtube-page button {
|
|
|
|
margin: 10px;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 5px 13px;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: #259485;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
.submit button:hover,
|
|
|
|
.youtube-page button:hover {
|
|
|
|
background-color: #97d4c8;
|
|
|
|
transform: scale(1.05);
|
|
|
|
color: #00202f;
|
|
|
|
}
|
|
|
|
.icons {
|
|
|
|
display: flex;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.icons img {
|
|
|
|
width: 25px;
|
|
|
|
}
|