-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (69 loc) · 1.11 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
body > * {
width: 800px;
margin: 0 auto;
font-family: 'Rubik', sans-serif;
}
#jogo {
display: none;
}
#iniciar-jogo {
margin: 40px 0;
}
.inicio-jogo {
display: flex;
flex-direction: column;
align-items: center;
}
#forca {
cursor: pointer;
border: 1px solid;
}
button {
border: 0;
color: white;
font-weight: bold;
background-color: #0000ff;
padding: 10px;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 0.5em;
}
button:disabled {
background-color: rgba(0, 0, 255, 0.3);
}
#palavra {
font-size: 3rem;
height: 70%;
list-style-type: none;
display: flex;
justify-content: center;
align-items: center;
}
.text-input {
border-radius: 0.5em;
border: 1px solid rgba(0, 0, 0, 0.2);
display: block;
padding: 0.5em;
width: 30%;
height: 50px;
margin-left: auto;
margin-right: auto;
}
.letra {
text-align: center;
display: block;
height: 4rem;
width: 3rem;
margin-right: 0.8rem;
border-bottom: 4px #0d0d0e solid;
}
#letraJogador {
border-radius: 0.5em;
border: 1px solid rgba(0, 0, 0, 0.2);
display: block;
padding: 0.5em;
width: 5%;
height: 30px;
margin-left: auto;
margin-right: auto;
}