mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
43 lines
782 B
CSS
43 lines
782 B
CSS
body{
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
background-color: #2d3e50;
|
|
font-family: "Lucida Console", "Courier New", monospace;
|
|
}
|
|
|
|
#content-table {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
#header {
|
|
height: 40px;
|
|
}
|
|
|
|
#log {
|
|
background-color: #202831AA;
|
|
height: 100px;
|
|
width: 400px;
|
|
border: solid white 1px;
|
|
font-size: 12px;
|
|
overflow-y: scroll;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
top: 50px;
|
|
right: 10px;
|
|
}
|
|
|
|
.log-message {
|
|
margin: 2px;
|
|
color: white;
|
|
text-shadow: 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
|
|
}
|
|
|
|
.error-message{
|
|
margin: 2px;
|
|
color: rgb(255, 154, 154);
|
|
text-shadow: 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
|
|
}
|