first commit probably lots of errors
This commit is contained in:
commit
ec94c2080b
99 changed files with 10227 additions and 0 deletions
65
src/express/www/static/css/main.css
Normal file
65
src/express/www/static/css/main.css
Normal file
|
@ -0,0 +1,65 @@
|
|||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
margin: 0;
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding: 90px;
|
||||
padding-top: 169px;
|
||||
text-align: center;
|
||||
background: red;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
.content {
|
||||
display: -ms-flexbox;
|
||||
/* IE10 */
|
||||
display: flex;
|
||||
-ms-flex-wrap: wrap;
|
||||
/* IE10 */
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.main {
|
||||
-ms-flex: 70%;
|
||||
/* IE10 */
|
||||
flex: 70%;
|
||||
background-color: white;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#connection {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.dot {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
background-color: red;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat {
|
||||
background-color: rgb(233, 223, 223);
|
||||
padding: 5px;
|
||||
padding-right: 7px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
background: #ddd;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue