mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
65 lines
1,018 B
CSS
65 lines
1,018 B
CSS
.buttonContainer {
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.button {
|
|
background-color: #f2cb05;
|
|
border: none;
|
|
color: black;
|
|
padding: 15px 30px;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
margin: 8px 2px 2px 2px;
|
|
cursor: pointer;
|
|
text-shadow: 1px 1px 8px black;
|
|
transition: width 0.5s, height 0.5s, ease-in 0.5s;
|
|
}
|
|
|
|
.button:active {
|
|
transform: translateY(2.5px);
|
|
}
|
|
|
|
.button:hover {
|
|
text-shadow: 2px 2px 8px black;
|
|
transition: width 0.5s, height 0.5s, ease-out 0.5s;
|
|
background-color: #a38c1a;
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
color: white;
|
|
padding: 10px;
|
|
}
|
|
|
|
.descrip {
|
|
color: #acabab;
|
|
font-weight: bold;
|
|
padding-top: 4%;
|
|
padding-bottom: 4%;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.pw {
|
|
margin: 10px;
|
|
}
|
|
|
|
.pwContainer {
|
|
font-family: 'Courier New', Courier, monospace;
|
|
text-align: center;
|
|
font-size: 24px;
|
|
color: white;
|
|
padding: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.form {
|
|
margin: 0px;
|
|
}
|
|
|
|
.text span {
|
|
color: var(--text-color);
|
|
}
|