-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (90 loc) · 1.35 KB
/
styles.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
101
102
103
104
105
106
107
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 20px;
}
html {
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
ul {
list-style: none;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
height: 10vh;
background-color: #ececec;
}
.logo {
padding-left: 2em;
}
.logo-text {
font-size: 2em;
}
.menubar {
width: 45%;
margin-left: 8.5em;
}
.list {
display: flex;
justify-content: space-between;
}
.list-items a {
color: black;
font-family: sans-serif;
font-size: 0.9em;
transition: 0.4s;
}
.list-items a:hover{
color: black;
}
.cart{
padding-right: 2em;
position: relative;
}
.cart .number-of-items{
display: flex;
cursor: pointer;
justify-content: center;
align-items: center;
color: white;
position: relative;
left: 18px;
top: -7px;
background-color: #f09d51;
height: 20px;
width: 20px;
border-radius: 7px;
}
.number-of-items .noi{
font-size: 0.7em;
}
.fa-shopping-cart{
font-size: 1.5em;
cursor: pointer;
}
.burger{
height: 28px;
width: 32px;
display: none;
}
.layer1, .layer2, .layer3{
background: black;
height: 4px;
margin-top: 4px;
width: 100%;
border-radius: 10px;
}
.section1 {
height: calc(100vh - 10vh);
width: 100%;
background: url("images/world.jpeg") center center/cover;
top: 0;
left: 0;
z-index: -1;
}