2022-07-23 05:54:07 +00:00
|
|
|
.std-text {
|
|
|
|
font-family: monospace;
|
|
|
|
color: white;
|
|
|
|
margin: 20px 0px 20px 0px;
|
|
|
|
}
|
2022-10-10 22:49:38 +00:00
|
|
|
.btn-group {
|
2022-10-13 17:06:00 +00:00
|
|
|
margin: 0 auto;
|
2022-10-10 22:49:38 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2022-07-23 05:54:07 +00:00
|
|
|
.btn-group button {
|
2022-10-13 17:06:00 +00:00
|
|
|
background-color: #00ff00; /* Green background */
|
|
|
|
color: black; /* White text */
|
2022-11-24 07:39:55 +00:00
|
|
|
padding: 10px; /* Some padding */
|
|
|
|
margin: 0px 5px 0px 5px;
|
2022-10-13 17:06:00 +00:00
|
|
|
cursor: pointer; /* Pointer/hand icon */
|
2022-07-23 05:54:07 +00:00
|
|
|
}
|
|
|
|
.btn-group button:not(:last-child) {
|
2022-10-13 17:06:00 +00:00
|
|
|
border-right: none; /* Prevent double borders */
|
2022-07-23 05:54:07 +00:00
|
|
|
}
|
|
|
|
.btn-group:after {
|
2022-10-13 17:06:00 +00:00
|
|
|
content: "";
|
|
|
|
clear: both;
|
|
|
|
display: table;
|
2022-07-23 05:54:07 +00:00
|
|
|
}
|
|
|
|
.btn-group button:hover {
|
2022-10-13 17:06:00 +00:00
|
|
|
background-color: #008800;
|
2022-08-22 04:01:47 +00:00
|
|
|
}
|
|
|
|
.center-div {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2022-07-23 05:54:07 +00:00
|
|
|
}
|