-
Notifications
You must be signed in to change notification settings - Fork 0
/
ranking.css
66 lines (54 loc) · 1015 Bytes
/
ranking.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
body{
background: linear-gradient(to left, #628dbd, #00ff88, #00b15e, green);
background-size: 500% 100%;
animation: degrade-animado 5s infinite alternate-reverse;
background-position: center;
}
header{
background-color: #445c9c;
box-shadow: 0px 3px 10px #464646;
margin: auto;
padding: 10px 10px;
}
.nav-bar{
display: flex ;
justify-content: space-between;
padding: 1.5rem 6rem;
}
.brasao{
width: 20%;
height: auto;
}
.logo h1 {
color: #fff;
}
.nav-link {
color: rgb(203, 255, 251);
}
.nav-list {
display: flex;
align-items: center;
}
.nav-list ul{
display: flex;
justify-content: center;
list-style: none;
}
.nav-item {
margin: 0 15px;
}
.imagee {
align-items: center;
width: 75%;
cursor: pointer;
box-shadow: 0px 3px 10px #464646;
border-radius: 5px;
}
@keyframes degrade-animado {
0% {
background-position-x: 0%;
}
100% {
background-position-x: 100%;
}
}