-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
52 lines (44 loc) · 834 Bytes
/
main.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
.question {
background-color: rgb(150, 200, 255);
position: relative;
border: 0.2em dotted white;
padding: 0.5em;
margin: 1em 4em;
}
.question__text {
display: block;
}
.question__answer {
font-color: blue;
padding: 0.5em;
margin: 0.5em;
background-color: white;
border: 1px solid black;
}
.question__thanks {
font-color: black;
display: none;
background-color: lightgreen;
padding: 0.5em;
}
.question__onward {
display: inline;
background-color: lightgray;
border: 1px solid red;
padding: 0.5em;
width: 50px;
}
.question__icecream {
display: inline;
background-color: lightgray;
border: 1px solid white;
padding: 0.5em;
height: 200px;
}
.question__thanks__wrapper {
display: none;
}
.question__why {
float: right;
font-size: small;
}