-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
79 lines (76 loc) · 1.46 KB
/
menu.html
File metadata and controls
79 lines (76 loc) · 1.46 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
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<title></title>
<style>
:root{
--blue:#031F73;
--yellow: #F2B705;
--gray:#F2F2F2;
--sm: 14px;
--s: 12px;
}
body{
margin: 0;
font-family: 'Montserrat', sans-serif;
}
nav{
display: flex;
flex-direction: column;
justify-content: space-between;
width: 152px;
height:100vh;
padding: 0px;
background-color: var(--blue);
}
nav a{
text-decoration:none;
color: white;
margin: 0 0 0 10px;
}
nav ul{
padding:0;
margin: 137px 0 0 14px;
list-style:none;
}
nav ul li{
margin-bottom:56px;
display:inline-flex;
align-items:center;
justify-content: center;
}
</style>
</head>
<body>
<nav>
<ul>
<li>
<img src="./icons/area.svg" alt="">
<a href="/">Áreas</a>
</li>
<li>
<img src="./icons/drop.svg" alt="">
<a href="/">Aspectos</a>
</li>
<li>
<img src="./icons/personal.svg" alt="">
<a href="/">Personal</a>
</li>
<li>
<img src="./icons/survey.svg" alt="">
<a href="/">Encuestas</a>
</li>
</ul>
<ul>
<li>
<img src="./icons/icon message-question.svg" alt="">
<a href="/">Ayuda</a>
</li>
</ul>
</nav>
</body>
</html>