Initial (overdue) commit

TODO:
- enable dynamic loading of button labels and actions
This commit is contained in:
2020-08-27 17:21:17 -07:00
parent 6e83bfb9c5
commit c5b61eee0a
42 changed files with 2739 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
.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;
}