-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.css
More file actions
76 lines (59 loc) · 1.11 KB
/
header.css
File metadata and controls
76 lines (59 loc) · 1.11 KB
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
:root {
--pretoEscuro: #131313;
--pretoClaro: #1b1b1b;
--azul: #011aa3;
--azulDestaque: #001fcf;
--azulClaro: #0a7dd4;
}
a, a:visited {
color: var(--azulClaro);
}
a:active, a:hover {
color: orange;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
p {
margin: 0;
font-size: 1.2em;
}
/* ----- Navbar (Barra de navegação) ----- */
nav ul {
list-style-type: none;
overflow: hidden;
margin: 0;
padding: 0;
background-color: var(--pretoEscuro);
display: block;
}
nav ul li {
float: none;
}
a.LinkNavbar {
display: block;
padding: 15px;
text-decoration: none;
color: #fff;
}
a.LinkNavbar:hover {
background-color: var(--pretoClaro);
}
a#Inicio {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--azul);
}
a#Inicio:hover {
background-color: var(--azulDestaque);
}
a#Inicio img {
margin-right: 5px;
}
@media screen and (min-width: 600px) {
nav ul li {
float: left;
}
}