41 lines
738 B
CSS
41 lines
738 B
CSS
.header-row {
|
|
text-align: center;
|
|
height: 8%;
|
|
}
|
|
.button-row {
|
|
height: 23%;
|
|
}
|
|
.button-col {
|
|
text-align: center;
|
|
background-color: #0c0c0c;
|
|
height: 100%;
|
|
}
|
|
.btn {
|
|
text-align: center;
|
|
height: 90%;
|
|
width: 100%;
|
|
background-color: #210c0c;
|
|
border: 5px solid #ff7200;
|
|
color: #ff7200;
|
|
font-weight: bold;
|
|
transition: none;
|
|
}
|
|
.btn:hover {
|
|
background-color: #210c0c;
|
|
border: 5px solid #ff7200;
|
|
color: #ff7200; !important
|
|
}
|
|
.btn:focus {
|
|
background-color: #210c0c;
|
|
border: 5px solid #ff7200;
|
|
color: #ff7200; !important
|
|
}
|
|
html, body, section, .container-fluid {
|
|
height: 100%;
|
|
background: #0c0c0c;
|
|
}
|
|
|
|
body, html {
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
} |