-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclase11.html
More file actions
127 lines (125 loc) · 3.6 KB
/
clase11.html
File metadata and controls
127 lines (125 loc) · 3.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Quicksand:wght@300..700&display=swap" rel="stylesheet">
<title>Document</title>
<style>
:root {
--white: #ffffff;
--black: #000000;
--very-light-pink: #C7C7C7;
--text-input-field: #f7f7f7;
--hospital-green: #acd9b2;
--sm: 14px;
--md: 16px;
--lg: 18px;
}
body {
font-family: "Quicksand", sans-serif;
margin: 0;
}
nav {
display: flex;
justify-content: space-between;
padding: 0 24px;
border-bottom: 1px solid var(--very-light-pink);
}
.menu{
display: none;
}
.logo{
width: 100px;
}
.navbar-left ul,
.navbar-right ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
height: 60px;
}
.navbar-left{
display: flex;
}
.navbar-left ul{
margin-left: 12px;
}
.navbar-left ul li a,
.navbar-right ul li a{
text-decoration: none;
color: var(--very-light-pink);
border: 1px solid var(--white);
padding: 8px;
border-radius: 8px;
}
.navbar-left ul li a:hover,
.navbar-right ul li a:hover{
border: 1px solid var(--hospital-green);
color: var(--hospital-green);
}
.navbar-email{
color: var(--very-light-pink);
font-size: var(--sm);
margin-right: 12px;
}
.navbar-shopping-cart{
position: relative;
}
.navbar-shopping-cart div{
width: 16px;
height: 16px;
background-color: var(--hospital-green);
border-radius: 50%;
font-size: var(--sm);
font-weight: bold;
position: absolute;
top: -6px;
right: -3px;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 640px) {
.menu{
display: block;
}
.navbar-left ul{
display: none;
}
.navbar-email{
display: none;
}
}
</style>
</head>
<body>
<nav>
<img src="/icons/icon_menu.svg" alt="menu" class="menu">
<div class="navbar-left">
<img src="/logos/logo_yard_sale.svg" alt="logo" class="logo">
<ul>
<li><a href="/">All</a></li>
<li><a href="/">Clothes</a></li>
<li><a href="/">Electronics</a></li>
<li><a href="/">Furniture</a></li>
<li><a href="/">Toys</a></li>
<li><a href="/">Others</a></li>
</ul>
</div>
<div class="navbar-right">
<ul>
<li class="navbar-email">platzi@example.com</li>
<li class="navbar-shopping-cart">
<img src="/icons/icon_shopping_cart.svg" alt="shopping-cart">
<div>2</div>
</li>
</ul>
</div>
</nav>
</body>
</html>