-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
116 lines (99 loc) · 1.67 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
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
body {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
max-height: 100vh;
background-color: #FFDD6D;
}
.header {
font-family: "Rye", cursive;
font-size: 4rem;
text-align: center;
padding: 2rem 0;
color: #C4526B;
}
.question {
font-family: "Supermercado One", cursive;
font-size: 2rem;
text-align: center;
padding: 4rem 0;
color: #C4526B;
}
.gif {
padding: 0;
}
.gif img {
max-height: 180px;
margin: 0;
padding: 0;
}
.buttons {
display: inherit;
justify-content: center;
}
.btn {
padding: 1rem;
margin: 2rem;
border-radius: 1rem;
font-size: 1.5rem;
font-family: "Supermercado One", cursive;
outline: none;
border: 3px black solid;
background-color: #ffcaca;
}
.btn:hover {
opacity: 0.6;
}
.answers {
margin-top: 2rem;
display: inherit;
flex-direction: column;
justify-content: center;
min-width: 60vw;
}
.ansbtn {
padding: 0.5rem;
margin: 0.5rem 5rem;
border: 3px black solid;
border-radius: 1rem;
font-size: 1.5rem;
font-family: "Supermercado One", cursive;
outline: none;
overflow: none;
background-color: #ffcaca;
}
.ansbtn:hover {
cursor: pointer;
}
.score-container {
background-color: #cccbbc;
padding: 0 2rem;
}
.score-title {
font-family: "Supermercado One", cursive;
font-size: 2rem;
margin-left: 5rem;
color: #e86884;
}
.total {
font-family: "Supermercado One", cursive;
font-size: 2rem;
margin-left: 5rem;
color: #e86884;
margin-bottom: 0;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.insult {
color: black;
font-size: 40px;
text-shadow: 2px 2px #C4526B;
}
@-ms-viewport {
width: device-width;
height: device-height;
}