tronnet.net/style.css
Arthur Lu 6120174084 improve contact page instructions,
move css formatting for btn-group div to stylesheet

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2022-10-10 15:49:38 -07:00

37 lines
643 B
CSS

.std-text {
font-family: monospace;
color: white;
margin: 20px 0px 20px 0px;
}
.btn-group {
margin: auto;
display: flex;
flex-direction: row;
justify-content: center;
}
.btn-group button {
background-color: #00ff00;
border: 1px solid #00ff00;
color: black;
padding: 10px 24px;
margin: 0px 20px 0px 20px;
cursor: pointer;
float: left;
}
.btn-group button:not(:last-child) {
border-right: none;
}
.btn-group:after {
content: "";
clear: both;
display: table;
}
.btn-group button:hover {
background-color: #00AA00;
border: #00AA00;
}
.center-div {
margin-left: auto;
margin-right: auto;
}