-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (59 loc) · 937 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
65
66
67
68
69
* {
padding: 0;
margin: 0;
box-sizing: border-box;
line-height: 0;
}
body {
background-image: url(img/bg2.jpg);
text-align: center;
font-family: 'Slabo 27px', serif ;
}
header {
background-color: black;
padding: 5em;
position: fixed;
width: 300px;
top: 100px;
}
h3 {
color: white;
font-variant: small-caps;
}
/* progress */
.main {
background-color: white;
opacity: 0.95;
padding: 2em;
position: absolute;
width: 250px;
top: 300px;
right: 200px;
}
.guide {
background-color: #ffc400;
opacity: 0.95;
padding: 2em;
position: fixed;
width: 250px;
top: 260px;
left: 0;
}
/* progress */
section {
width: 606px;
margin: 5px auto;
overflow: auto;
background-color: white;
}
.btn {
width: 200px;
float: left;
margin: 2px 1px;
}
.btn:hover {
opacity: 0.5;
}
.active {
opacity: 0.5;
}