forked from tlongren/vps-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (116 loc) · 2.31 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro);
body {
font-family: 'Source Sans Pro', sans-serif;
background-color: #697586;
}
.chrome {
width: 700px;
height: 400px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -250px;
margin-top: -200px;
background-color: #34393D;
border-radius: 3px;
text-align: middle;
}
.content {
position: inherit;
background-color: #FFFFFF;
top: 30px;
right: 0px;
left: 0px;
bottom:0px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.circle {
height: 7px;
width: 7px;
margin:10px 0px 0px 10px;
display: inline-block;
border-radius: 50%;
}
.circle:first-child{
background: #CF7C7A;
}
.circle:nth-child(2){
background: #CCB37B;
}
.circle:nth-child(3){
background: #78B885;
}
header {
background: #46C3B6;
height: 50px;
width:100%;
position: inherit;
}
#logo {
color: #FFF;
padding-top: 15px;
text-align: center;
font-weight: 800;
position: inherit;
height: 100%;
width: 200px;
}
.online, header.online {
background: #29B6A7;
}
.offline, header.offline {
background: #222222;
}
#content {
background: #434C55;
top: 50px;
bottom: 0px;
width: 700px;
position: inherit;
}
.tab {
font-size: 12px;
padding: 15px 25px;
font-family: 'FontAwesome', sans-serif;
color: #949BA7;
border-bottom: 1px solid #4C5560;
}
.tab:hover {
background: #4C5560;
}
div i {
margin-right: 10px;
}
/* ================ */
/* = The 1Kb Grid = */ /* 12 columns, 60 pixels each, with 20 pixel gutter */
/* ================ */
.grid_1 { width:60px; }
.grid_2 { width:140px; }
.grid_3 { width:220px; }
.grid_4 { width:300px; }
.grid_5 { width:380px; }
.grid_6 { width:460px; }
.grid_7 { width:540px; }
.grid_8 { width:620px; }
.grid_9 { width:700px; }
.grid_10 { width:780px; }
.grid_11 { width:860px; }
.grid_12 { width:940px; }
.column {
margin: 0px 10px;
overflow: hidden;
float: left;
display: inline;
}
.row {
width: 960px;
margin: 0 auto;
overflow: hidden;
float: left;
}
.row .row {
margin: 0 -10px;
width: auto;
}