65 lines
No EOL
942 B
CSS
65 lines
No EOL
942 B
CSS
* {
|
|
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;
|
|
} |