-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
48 lines (42 loc) · 935 Bytes
/
main.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
body {
margin: 0;
font-family: Arial, sans-serif;
color: rgb(0, 0, 0);
background-image: url("img/back.jpeg");
}
nav {
display: flex;
justify-content: space-between;
padding: 22px;
background: rgba(0, 0, 0, 0.5);
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
gap: 20px;
}
nav a {
color: rgb(255, 255, 255);
text-decoration: none;
font-weight: bold;
}
nav a {
color: #ffffff; /* Color del texto */
text-decoration: none; /* Sin subrayado */
padding: 10px 15px; /* Espaciado interno */
border-radius: 5px; /* Bordes redondeados */
transition: background-color 0.3s; /* Transición suave */
}
nav a:hover {
background-color: #000000; /* Color de fondo al hacer hover */
color: #160077; /* Cambiar color del texto al hacer hover */
}
.nav-title {
font-family: Jockey One;
font-size: 19.83px;
font-weight: 400;
line-height: 27.72px;
text-align: left;
}