mirror of
https://github.com/falk-werner/webfuse-example
synced 2024-10-27 20:44:09 +00:00
48 lines
686 B
CSS
48 lines
686 B
CSS
|
html, body {
|
||
|
font-family: monospace;
|
||
|
background-color: #c0c0c0;
|
||
|
}
|
||
|
|
||
|
.page {
|
||
|
margin-left: 50px;
|
||
|
margin-right: 50px;
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
.window {
|
||
|
border: 1px solid black;
|
||
|
background-color: black;
|
||
|
border-radius: 5px;
|
||
|
padding: 10px;
|
||
|
margin-bottom: 25px;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.window .title {
|
||
|
text-align: center;
|
||
|
color: #dba329;
|
||
|
font-weight: bold;
|
||
|
padding-bottom: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
border-bottom: 1px solid #dba329;
|
||
|
}
|
||
|
|
||
|
.commands {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
column-count: 2;
|
||
|
column-width: 50%;
|
||
|
}
|
||
|
|
||
|
.content > div {
|
||
|
display: inline-block;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
#connection {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|