-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (103 loc) · 2.1 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
header{
padding: 0;
}
body {
background-image: url("quadro_negro.jpg");
background-position: center;
background-size: cover;
margin: 0px;
text-align: center;
font-family: 'Source Serif Pro', serif;
}
h1{
color:white;
padding: 2px;
text-align: center;
font-family: 'Source Serif Pro', serif;
font-size: 50px;
}
h2{
color:white;
text-align: center;
font-family: 'Source Serif Pro', serif;
}
h3{
color:white;
text-align: center;
font-family: 'Source Serif Pro', serif;
font-size: 15px;
}
.jogo-container {
display: flex;
justify-content: space-evenly;
width: 100%;
}
.forca {
fill: transparent;
stroke: #fff;
stroke-width: 8px;
stroke-linecap: round;
}
.forca-parte {
display: none;
}
.letras-erradas-container {
font-size: 32px;
}
.letras-erradas-container span {
margin: 0 2px;
font-family: 'Source Serif Pro', serif;
color:white;
}
.palavra-secreta-container {
font-size: 45px;
}
.aviso-palavra-repetida {
background-color: white;
border-radius: 10px 10px 0 0;
padding: 15px 20px;
position: absolute;
bottom: -55px;
transition: transform 0.3s ease-in-out;
}
.aviso-palavra-repetida p {
margin: 0;
}
.aviso-palavra-repetida.show {
transform: translateY(-50px);
}
.palavra-secreta-container span {
margin: 0 5px;
font-family: 'Source Serif Pro', serif;
color:white;
}
.popup-container {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: none;
align-items: center;
justify-content: center;
}
.popup {
background: rgba(183, 175, 175, 0.2);
border-radius: 5px;
box-shadow: 0 15px 10px 3px rgba(255, 255, 255, 0.1);
padding: 20px;
text-align: center;
}
.popup button {
cursor: pointer;
background-color: #fff;
border: 0;
margin-top: 20px;
padding: 12px 20px;
font-size: 16px;
}
footer {
color:white;
font-family: 'Source Serif Pro', serif;
font-size: 1rem;
}