-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_clase_11.css
100 lines (84 loc) · 1.61 KB
/
style_clase_11.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
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
:root{
--white: #FFFFFF;
--black: #000000;
--dark: #232830;
--very-light-pink: #C7C7C7;
--text-input-field: #F7F7F7;
--hospital-green: #ACD9B2;
--sm: 14px;
--md: 16px;
--lg: 18px;
}
body{
margin: 0;
font-family: 'Quicksand', sans-serif;
}
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;
display: flex;
align-items: center;
}
.navbar-left{
display: flex;
margin-left: 12px;
}
.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)
}
.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;
}
.email{
display: none;
}
}