Files

100 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2020-05-03 22:51:16 +00:00
:root {
--background-color: #222831;
--subtle-color: #2d4059;
--normal-color: #eee;
--highlight-color: #d65a31;
}
body {
background-color: var(--background-color);
color: var(--normal-color);
font-family: Courier, monospace;
font-size: 16px;
line-height: 1.4;
margin: 20px;
}
input {
background-color: var(--background-color);
border: 1px dotted var(--highlight-color);
color: var(--normal-color);
font-family: Courier, monospace;
font-size: 16px;
margin: 5px;
padding: 5px;
}
table {
border: 3px solid var(--highlight-color);
border-collapse: collapse;
margin-top: 30px;
}
th,
td {
border: 1px solid var(--subtle-color);
padding: 7px;
}
thead,
tfoot tr {
border: 3px solid var(--highlight-color);
}
.admin,
2020-11-25 22:41:05 +00:00
.active,
.solo {
2020-05-03 22:51:16 +00:00
cursor: pointer;
opacity: 0.3;
user-select: none;
}
.enable {
opacity: 1 !important;
}
.admin.enable {
cursor: default;
}
.controls {
opacity: 0.3;
}
.control-button {
border: 3px solid var(--highlight-color);
display: inline-block;
margin: 20px;
padding: 10px;
transition: all 0.8s;
user-select: none;
}
2021-06-11 16:40:37 +00:00
.controls.enable .control-button:active {
background: var(--highlight-color);
2020-05-03 22:51:16 +00:00
transition: none;
}
.controls.enable .control-button {
cursor: pointer;
}
2020-05-03 23:10:05 +00:00
2020-06-27 21:18:19 +00:00
.action {
2020-06-27 21:48:27 +00:00
color: var(--highlight-color);
2020-06-27 21:18:19 +00:00
cursor: pointer;
margin-left: 10px;
2020-06-27 21:48:27 +00:00
}
.users tbody tr td:nth-child(2) {
text-align: right;
2020-06-27 21:18:19 +00:00
}
2020-05-03 23:10:05 +00:00
.github {
bottom: 0;
color: var(--subtle-color);
padding: 5px;
position: fixed;
right: 0;
text-decoration: none;
}