-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
73 lines (68 loc) · 1.25 KB
/
test.css
File metadata and controls
73 lines (68 loc) · 1.25 KB
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
* {
margin: 0;
padding: 0;
}
ul {
list-style: none;
}
body {
position: relative;
}
header {
color: rgba(0, 0, 0, 0.8);
text-align: center;
}
header > h1 {
margin: 7px 0;
}
header > ul {
display: flex;
justify-content: space-around;
font-size: 18px;
box-sizing: border-box;
}
header > ul > li {
width: 150px;
height: 50px;
line-height: 2.5;
transition: .2s;
}
header > ul > li:hover {
background-color: pink;
border-radius: 7px 7px 0 0;
}
section {
background-color: pink;
padding: 20px 60px;
position: absolute;
top: 100px;
left: 0;
right: 0;
}
section.section__first-week {
/* z-index: 1; */
display: none;
}
section.section__second-week {
/* z-index: 2; */
display: none;
}
section .question > h2 {
font-size: 30px;
}
section .question > .question--container {
margin: 20px 0;
}
section .question > .question--container > h3 {
margin-bottom: 8px;
}
section .question > .question--container > p {
margin: 8px 0;
}
section .question > .question--container > button {
margin-top: 7px;
padding: 7px;
font-size: 16px;
border-radius: 5px;
border-color: #fff;
}