-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (80 loc) · 1.5 KB
/
style.css
File metadata and controls
95 lines (80 loc) · 1.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
:root {
--progress-field-diameter: 80px;
}
* {
margin: 0;
padding: 0;
}
body {
width: 800px;
margin: 0 auto;
font-family: sans-serif;
background: rgba(234, 196, 255, 0.47);
}
header {
height: 150px;
display: flex;
justify-content: center;
align-items: center;
}
main {
background: white;
}
h2 {
margin: 20px;
}
.three-by-three {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 500px;
background: rgba(169,219,255,0.36);
}
.pf-row {
display: flex;
justify-content: space-around;
}
.row-rev {
flex-direction: row-reverse;
}
.progress-field {
height: var(--progress-field-diameter);
width: var(--progress-field-diameter);
background: orange;
border-radius: 100%;
/*margin: 20px;*/
/*text-align: center;*/
display: flex;
justify-content: center;
align-items: center;
}
.progress-field-done {
background: rgba(255,165,0,0.35);
}
.progress-field-current {
background: rgba(71, 102, 220, 0.55);
}
#input-area-el {
min-height: 300px;
background: rgba(86,255,188,0.35);
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
#answers-el {
width: 100%;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
#answers-el button {
min-width: 70px;
max-width: 180px;
margin: 15px 10px;
padding: 5px;
font-size: 1.2em;
}
#answers-el p {
margin: 0 20px 20px;
}