-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.css
71 lines (63 loc) · 1.28 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body {
margin: 0;
padding: 0;
background-color: rgb(246, 244, 236);
}
.site {
position: absolute;
left: 200px;
top: 200px;
width: 200px;
height: 360px;
background-color: black;
}
.activityModel {
border: 1px;
width: 19px;
height: 19px;
background: linear-gradient(70deg, indianred, white);
position: absolute;
}
.inactiveModel {
border: 1px;
width: 19px;
height: 19px;
position: absolute;
background: linear-gradient(70deg, grey, white);
}
.nextModel {
border: 1px;
width: 19px;
height: 19px;
background: linear-gradient(70deg, #37378c, white);
position: absolute;
}
.start-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;
cursor: pointer;
}
#next {
margin-bottom: 100px;
position: relative;
}
#info label {
display: inline-block;
margin: 10px auto;
}
#info {
padding: 20px;
}