-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (53 loc) · 859 Bytes
/
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
.margin-top-default {
margin-top: 20px;
}
.margin-top-medium {
margin-top: 40px;
}
.margin-top-big {
margin-top: 80px;
}
.margin-bottom-default {
margin-bottom: 20px;
}
.margin-bottom-medium {
margin-bottom: 40px;
}
.margin-bottom-big {
margin-bottom: 80px;
}
.biggest-font-size {
font-size: 128px;
}
.answer-box {
position: relative;
width: 100%;
text-align: center;
overflow: hidden;
height: 40px;
background-color: #00aaab;
margin-bottom: 40px;
padding: 10px;
color: black;
}
.answer-line {
position: absolute;
width: 100%;
top: 10px;
left: 0;
z-index: 0;
}
.block {
position: relative;
margin-left: 10px;
width: 2%;
height: 20px;
background-color: green;
z-index: 1;
}
.block-left {
float: left;
}
.block-right {
float: right;
}