tiamat/cmd/templates/style.css

214 lines
2.6 KiB
CSS
Raw Normal View History

2024-06-03 10:43:55 +02:00
* {
font-family: arial;
}
table {
border: 1px solid black;
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
}
.optionCap {
text-transform: capitalize;
}
ul {
text-align: center;
list-style: none;
top: 0;
margin: 0;
padding: 0;
}
li.hor {
display: inline-flex;
vertical-align: center;
2024-06-03 10:43:55 +02:00
margin-right: 20px;
}
td.left {
text-align: left;
vertical-align: center;
2024-06-03 10:43:55 +02:00
padding-left: 5px;
}
2024-06-07 08:31:52 +02:00
td {
2024-06-03 10:43:55 +02:00
text-align: center;
vertical-align: center;
2024-06-07 08:31:52 +02:00
padding: 5px;
2024-06-03 10:43:55 +02:00
}
2024-06-10 11:35:09 +02:00
td#bold {
font-weight: bold;
}
on {
color: green;
2024-06-03 10:43:55 +02:00
font-weight: 500;
}
off {
color: red;
2024-06-03 10:43:55 +02:00
font-weight: 500;
}
table * {
text-align: center;
}
input {
margin-bottom: 10px;
}
#but {
background-color: #eee;
border: 2px black solid;
}
.centered {
text-align: center;
}
img {
text-align: center;
border: 2px solid #ff6e00;
border-radius: 50%;
padding: 1%;
}
button {
background-color: #eee;
border: 2px black solid;
margin-bottom: 10px;
}
#but:hover {
background-color: #ff6e00;
border: 2px black solid;
}
body {
background-color: #aaa;
}
h1 {
text-align: center;
bottom: 0%;
}
h3 {
text-align: center;
}
form {
text-align: center;
}
2024-06-07 08:31:52 +02:00
td a.clickable {
2024-06-05 09:50:17 +02:00
display: block;
width: 100%;
2024-06-07 08:31:52 +02:00
margin: 0;
2024-06-05 09:50:17 +02:00
}
2024-06-03 10:43:55 +02:00
a {
color: #ff6e00;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
progress::-moz-progress-bar {
background-color: #ff6e00;
}
progress::-webkit-progress-value {
background-color: #ff6e00;
}
progress {
color: #ff6e00;
}
footer {
top: 100%;
}
#main {
background-color: #eee;
width: 80vw;
height: 80vh;
padding: 10px;
outline: solid 2px #ff6e00;
overflow: scroll;
}
2024-06-05 09:50:17 +02:00
div#command {
2024-06-07 08:31:52 +02:00
width: 100%;
2024-06-10 11:35:09 +02:00
height: 60%;
2024-06-05 09:50:17 +02:00
border: 2px solid black;
overflow: scroll;
2024-06-07 08:31:52 +02:00
padding-bottom: 30px;
text-wrap: nowrap;
2024-06-05 09:50:17 +02:00
}
2024-06-17 10:58:21 +02:00
div#files {
width: 100%;
height: 60%;
border: 2px solid black;
overflow: scroll;
padding-bottom: 30px;
text-wrap: nowrap;
}
2024-06-07 08:31:52 +02:00
input#commandinput {
width: 60%;
height: 20px;
}
2024-06-17 10:58:21 +02:00
input#fileinput {
width: 91%;
height: 20px;
}
input:focus {
2024-06-07 08:31:52 +02:00
outline: 2px solid #ff6e00;
2024-06-07 09:59:33 +02:00
}
2024-06-07 08:31:52 +02:00
2024-06-07 09:59:33 +02:00
a#pointer {
cursor: pointer;
2024-06-07 08:31:52 +02:00
}
2024-06-03 10:43:55 +02:00
@media (max-width: 600px) {
#main {
width: 60vw;
}
}
.container {
display: flex;
position: fixed;
margin: 1px;
padding: 1px;
top: 1px;
left: 1px;
2024-06-07 08:31:52 +02:00
/* outline: solid 1px black; */
2024-06-03 10:43:55 +02:00
justify-content: center;
align-items: center;
height: 99vh;
width: 99vw;
background-color: #aaa;
/* width: 100%; */
/* height: 100%; */
/* margin: 50px; */
/* outline: solid 1px black; */
/* display: flex; */
/* justify-content: center; */
/* align-items: center; */
}