tronnet.net/style.css
Arthur Lu 3ac5069580 fix button wiggle issue
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2022-10-13 10:06:00 -07:00

31 lines
649 B
CSS

.std-text {
font-family: monospace;
color: white;
margin: 20px 0px 20px 0px;
}
.btn-group {
margin: 0 auto;
display: flex;
justify-content: center;
}
.btn-group button {
background-color: #00ff00; /* Green background */
color: black; /* White text */
padding: 10px 24px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
}
.btn-group:after {
content: "";
clear: both;
display: table;
}
.btn-group button:hover {
background-color: #008800;
}
.center-div {
margin-left: auto;
margin-right: auto;
}