-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
188 lines (163 loc) · 2.83 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
O arquivo do css responsavel pela estilização
e animação do quiz de programação.
*/
*{
margin: 0px;
padding: 0px;
}
body{
background-color: #ccc;
display: absolute;
}
main{
margin: 30px auto;
width: 900px;
display: flex;
justify-content: space-between;
}
div{
background-color: white;
border: 1px solid #000;
padding: 10px;
box-shadow: 10px 10px 10px #333;
}
/* Container do placar */
#placar{
width: 200px;
height: 300px;
}
#placar h3{
font-size: 30px;
padding: 10px;
background-color: #ccc;
text-align: center;
margin-bottom: 20px;
}
#placar p{
font-size: 15px;
padding: 5px;
font-family: sans-serif;
}
#placar span{
margin-left: 10px;
}
/* Container de doações */
#doacoes{
margin-top: 30px;
width: 200px;
height: 250px;
}
/* Questionario é o container */
#questinario{
width: 600px;
height: 500px;
}
/* Pergunta é outro container */
#pergunta{
padding: 10px;
width: 600px;
height: 500px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
/*Lista no centro*/
#pergunta ol{
text-align: center;
}
/* Lista das opções da pergunta */
#pergunta li{
cursor: pointer;
width: 500px;
margin-left: 20px;
transition: 0.5s;
}
#pergunta li:hover{
background-color: #ccc;
transition: 0.5s;
}
/* A pergunta em si */
#questao{
font-size: 25px;
font-family: 'Courier New', Courier, monospace;
margin-bottom: 20px;
}
#questao_a, #questao_b, #questao_c{
font-size: 20px;
font-family: 'Courier New', Courier, monospace;
margin-top: 10px;
padding: 10px;
}
#container-botoes{
display: flex;
justify-content: start;
}
#confirmar, #proximo{
background-color: lightgreen;
color: #030;
border: 1px solid darkgreen;
width: 45%;
padding: 5px 10px;
text-align: center;
font-size: 30px;
font-weight: bold;
position: relative;
bottom: 10px;
left: 5%;
transition: 0.5s;
}
/*
Configurando as pseudos classes dos botẽos
*/
#confirmar:hover{
cursor: pointer;
}
#proximo:hover{
cursor: pointer;
}
#proximo:disabled{
opacity: 0.5;
transition: 0.5s;
}
/*
Estilizando o Sistema de Escolha
*/
li.escolha{
background-color: rgb(184, 248, 248);
border: 1px solid darkblue;
}
li.acertou{
background-color: lightgreen;
border: 1px solid darkgreen;
}
li.errou{
background-color: lightcoral;
border: 1px solid darkred;
}
/*
Criando a classe sumir e aparecer.
*/
.sumir{
animation: sumir 1s linear 1;
}
.aparecer{
animation: aparecer 1s linear 1;
}
/* Cria as animações */
@keyframes sumir {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes aparecer {
from {
opacity: 0;
}
to {
opacity: 1;
}
}