-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.css
48 lines (44 loc) · 889 Bytes
/
index.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
body {
margin: 0;
padding: 0;
}
.site {
position: absolute;
left: 200px;
top: 200px;
width: 200px;
height: 360px;
background-color: black;
}
.activityModel {
border: 1px;
width: 19px;
height: 19px;
background: red;
position: absolute;
}
.inactiveModel {
border: 1px;
width: 19px;
height: 19px;
position: absolute;
background-color: gray;
}
.restart {
padding: .3em .8em;
border: 1px solid rgba(0, 0, 0, .1);
background: #58a linear-gradient(hsla(0, 0%, 100%, .2), transparent);
border-radius: .2em;
box-shadow: 0 .05em .25em rgba(0, 0, 0, .5);
color: white;
text-shadow: 0 -.05em .05em rgba(0, 0, 0, .5);
font-size: 125%;
line-height: 1.5;
text-align: center;
width: 125px;
z-index: 11;
left: 220px;
top: 380px;
position: absolute;
display: none;
}