2022-12-24 11:10:40 -08:00
|
|
|
body {
|
|
|
|
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
|
|
}
|
|
|
|
.mainbox {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 0;
|
|
|
|
top: 0;
|
|
|
|
background-color: rgb(0, 155, 65);
|
|
|
|
padding: 25px;
|
|
|
|
opacity: 0.9;
|
|
|
|
transition: 0.4s;
|
|
|
|
}
|
|
|
|
.mainbox .title {
|
|
|
|
position:sticky;
|
|
|
|
outline: 0;
|
|
|
|
border: 0px;
|
|
|
|
font-size: 40px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.mainbox .options {
|
|
|
|
font-size: 20px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.mainbox .options button {
|
|
|
|
padding: 15px;
|
|
|
|
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
|
|
font-size: 25px;
|
|
|
|
border-radius: 10px;
|
2022-12-24 13:39:59 -08:00
|
|
|
opacity: 0.9;
|
2022-12-24 11:10:40 -08:00
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
button:hover {
|
|
|
|
color: #fff;
|
|
|
|
background-color: #000;
|
|
|
|
opacity: 1;
|
2022-12-24 13:39:59 -08:00
|
|
|
}
|
|
|
|
.gback {
|
|
|
|
padding: 8px;
|
|
|
|
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
|
|
font-size: 15px;
|
|
|
|
border-radius: 6px;
|
|
|
|
opacity: 0.9;
|
|
|
|
transition: 0.3s;
|
2022-12-24 11:10:40 -08:00
|
|
|
}
|