-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (81 loc) · 1.47 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
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* { margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--title1-color: rgb(34, 16, 43);
--title2-color: rgb(253, 231, 106);
}
body {
background-color: var(--title1-color);
font-family: 'Lobster', cursive;
color: white;
}
header {
background: var(--title2-color);
padding: 1em;
}
header h1{
color: var(--title1-color);
text-align: center;
font-size: 3em;
}
.pontuacao {
border: solid white;
width: 10em;
font-size: 1.5em;
margin: 1em auto;
border-radius: 4px;
padding: 0.7em 1em;
position: relative;
text-align: center;
}
.pontuacao span {
font-size: 2em;
}
.pontuacao .jogador {
background: rgb(59, 75, 109);
padding: 0.2em;
font-size: 0.8em;
}
.pontuacao #placaUsuário {
position: absolute;
top: 1em;
left: -2em;
}
.pontuacao #placaComputador{
position: absolute;
top: 1em;
right: -2.8em;
}
.resultado {
font-size: 2em;
}
.resultado p{
text-align: center;
}
.opções {
text-align: center;
}
.opção{
display: inline-block;
margin: 1em;
}
.opções img{
background: var(--title2-color);
height: 7em;
width: 7em;
border-radius: 100px;
border: 4px solid white;
}
.opções img:hover {
background: whitesmoke;
cursor: pointer;
transition: all 0.3s ease;
}
#mensagemJogar {
text-align: center;
font-size: 2em;
margin-top: 1em;
}