-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathestilo.css
More file actions
60 lines (57 loc) · 1017 Bytes
/
estilo.css
File metadata and controls
60 lines (57 loc) · 1017 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans';
}
body{
background-image: url(img/fondo.jpg);
background-size: cover;
}
nav{
max-width: 900px;
margin: auto;
background-color: #333;
font-size: 20px;
margin-top: 50px;
}
.menu-horizontal{
list-style: none;
display: flex;
justify-content: space-around;
}
.menu-horizontal > li > a{
display: block;
padding: 15px 20px;
color: white;
text-decoration: none;
}
.menu-horizontal > li:hover{
background-color: red;
}
.menu-vertical{
position: absolute;
display: none;
list-style: none;
width: 200px;
background-color: rgba(0, 0, 0, .5);
}
.menu-horizontal li:hover .menu-vertical{
display: block;
}
.menu-vertical li:hover{
background-color: black;
}
.menu-vertical li a{
display: block;
color: white;
text-decoration: none;
padding: 15px 15px 15px 20px;
}
#html{
margin: auto;
padding: 20px;
max-width: 900px;
background: white;
}