52 lines
611 B
CSS
52 lines
611 B
CSS
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body, #top {
|
|
background: #FFF;
|
|
}
|
|
|
|
#wrapper {
|
|
width: 1030px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#top {
|
|
overflow: hidden;
|
|
height: 350px;
|
|
}
|
|
|
|
#chart, #status {
|
|
float: left;
|
|
}
|
|
|
|
#chart {
|
|
width: 600px;
|
|
}
|
|
|
|
#status {
|
|
width: 430px;
|
|
height: 322px;
|
|
}
|
|
|
|
#status p {
|
|
margin-top: 50px;
|
|
text-align: center;
|
|
font-size: 2em;
|
|
}
|
|
|
|
canvas {
|
|
border: 1px solid #EEE;
|
|
margin: 0 1px 1px 0;
|
|
}
|