-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
75 lines (65 loc) · 1.24 KB
/
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
70
71
72
73
74
75
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
#container {
align-items: center;
border: 1px solid;
display: flex;
height: 100%;
justify-content: center;
width: 100%;
}
content {
align-items: center;
border: 1px solid;
display: flex;
flex-direction: column;
height: 500px;
max-height: 100%;
overflow: hidden;
width: 500px;
position: relative;
}
content #mobile-answer {
opacity:0;
width: 0;
overflow: hidden;
position: absolute;
top: 90px;
}
content #reset-button {
all: unset;
align-self: flex-start;
background-color: #008CBA;
cursor: pointer;
position: relative;
padding: 10px;
color: #fff;
border-radius: 4px;
font-size: 28px;
}
content #reset-button:hover {
box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);
}
content #reset-button:active {
background-color: #54f;
transition: 0.2s;
}
content span {
align-self: flex-end;
font-size: 40px;
white-space: nowrap;
}
.good {
color: #0F0;
}
.bad {
color: #F00;
}