-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
55 lines (51 loc) · 840 Bytes
/
estilo.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
canvas {
border: 1px solid red;
background-color: black;
background-image: url("assets/img/inicio.png");
margin: 0 auto;
display: block;
}
#esquerda {
width: 30px;
height: 100px;
float: left;
}
#direita {
width: 30px;
height: 100px;
float: right;
}
#naruto-progress {
width: 50px;
border: 1px solid black;
position: absolute;
text-align: center;
left: 20px;
background-color: red;
}
#sasuke-progress {
width: 50px;
border: 1px solid black;
position: absolute;
right: 20px;
text-align: center;
background-color: red;
}
p {
margin: 0;
display: inline-block;
position: absolute;
top: 100px;
background-color: black;
color: white;
font-weight: bolder;
text-transform: uppercase;
}
#sasuke-info {
right: 20px;
display: none;
}
#naruto-info {
left: 20px;
display: none;
}