-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
120 lines (100 loc) · 1.57 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body * {
box-sizing: border-box;
}
html {
height: 100%;
}
body {
font-family: 'Bitter', serif;
color: white;
background: url(https://static.pexels.com/photos/9186/food-beans-coffee-drink.jpg) no-repeat;
background-size: cover;
height: 100%;
text-align: center;
}
.hidden {
display: none;
}
.blackbox {
width: 90%;
height: 75%;
background-color: rgba(0, 0, 0, 0.8);
padding: 25px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
.espresso {
height: auto;
width: 50%;
}
legend {
font-size: 24px;
}
fieldset {
border: none;
}
.button {
height: 35px;
width: 120px;
text-align: center;
border-radius: 5px;
background-color: white;
font-size: 16px;
font-family: 'Bitter', serif;
}
.coffee-question {
padding-left: 50px;
font-size: 18px;
text-align: left;
}
.coffee-answers {
text-align: left;
padding-left: 50px;
font-size: 18px;
line-height: 140%;
margin-bottom: 30px;
}
.button.disabled {
opacity: 0.50;
cursor: not-allowed;
}
.results-counter {
font-size: 20px;
text-align: center;
}
.all-feedback {
font-size: 18px;
margin-top: 10px;
position: relative;
line-height: 150%;
}
.happy-coffee {
height: auto;
width: 35%;
margin-top: -15px;
}
.sad-coffee {
height: auto;
width: 30%;
margin-top: -25px;
}
#final-correct {
margin-top: -30px;
}
.many-cups {
height: auto;
width: 40%;
}
.craving {
font-size: 18px;
}
#retake {
height: 35px;
width: 200px;
text-align: center;
border-radius: 5px;
background-color: white;
font-size: 16px;
font-family: 'Bitter', serif;
}