-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (66 loc) · 1.27 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (66 loc) · 1.27 KB
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
body {
font-family: 'Consolas', Arial, Helvetica, sans-serif;
}
.container-1 {
display: flex;
justify-content: center;
}
.container-2 {
display: flex;
justify-content: center;
}
.container-3 {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-end;
}
.container-4 {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
margin-top: 40px;
}
h1 {
font-size: 36px;
text-transform: uppercase;
}
span {
display: flex;
justify-content: center;
border-bottom: 3px solid #DC1f27;
width: 40px;
margin: 5px;
padding-bottom: 10px;
font-size: 25px;
font-weight: bold;
text-transform: uppercase;
}
button {
margin: 5px;
width: 35px;
padding: 10px 0;
background-color: #00698c;
color: #FFFFFF;
border: 1px solid #00698c;
border-radius: 5px;
font-weight: bold;
font-size: 10px;
cursor: pointer;
text-transform: uppercase;
}
button:hover {
background-color: #85dcf7 ;
}
.certa, certa:hover {
background-color: #00698c;
border: 1px solid #00698c;
cursor: inherit;
}
.errada, errada:hover {
background-color: #DC1f27;
border: 1px solid #DC1f27;
cursor: inherit;
}