-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjogo.css
102 lines (70 loc) · 1.4 KB
/
jogo.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
body {
text-align: center;
background-size: 100%;
background-image: url(https://mir-s3-cdn-cf.behance.net/project_modules/fs/01073865290819.5d61d475f0072.jpg);
overflow: hidden
}
h1 {
color:white;
text-shadow: 1px 1px 8px rgb(146, 122, 122);
padding-left: 20px;
text-align: center;
font-family:sans-serif;
position: relative;
top: -10px;
}
h3{
position:relative;
bottom: 0;
text-align: center;
color: white;
padding-left: 20px;
}
#img-redonda{
height: 175px;
border-radius: 50%;
}
h2{
color:black;
box-shadow: 0 5px 15px rgb(34, 30, 30);
padding-left: 20px;
text-align: center;
font-family:sans-serif;
position: relative;
top: -10px;
}
.personagens {
display: inline-block;
justify-content: flex-start;
margin-top: 3%;
}
img:hover{ position: relative;
top: -10px;
}
.personagens li {
list-style: none;
width: 25%;
display: inline-block;
padding: 10px;
}
.personagens img {
width: 100%;
display: inline-block;
margin-left: 20px;
padding-left: 20px;
padding: 20px;
}
ul{
display: flex;
flex-direction: row;
}
footer{
position:absolute;
bottom: 0px;
width: 100%;
height: 20px;
background-color: green;
color:white;
margin-top: 14%;
text-align: center;
}