-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
86 lines (73 loc) · 1.28 KB
/
Copy pathApp.css
File metadata and controls
86 lines (73 loc) · 1.28 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
* {
margin: 0;
padding: 0;
font-family: GothamHTF;
font-size: 15px;
line-height: normal;
font-weight: normal;
font-style: normal;
font-stretch: normal;
letter-spacing: normal;
-webkit-font-smoothing: antialiased;
}
body {
margin: auto;
}
.product-page>div:not(.wrapper) {
max-width: 1200px;
margin: auto;
}
ul,
li {
list-style: none
}
.product-page {
max-width: 1440px;
margin: 0 auto
}
.slick-arrow {
position: absolute;
top: 50%;
transform: translate(0, -50%);
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
background: transparent;
z-index: 1;
font-size: 0;
}
.slick-arrow.slick-prev {
left: 0;
border-right: 10px solid blue;
}
.slick-arrow.slick-next {
right: 0;
border-left: 10px solid blue;
}
.main-header {
overflow: hidden;
align-items: center;
display: flex;
justify-content: space-between;
margin-bottom: 30px;
box-shadow: 0 0 black;
padding: 25px 30px 15px;
z-index: 2;
background: var(--white);
box-shadow: 0 0 5px 3px hsla(0, 0%, 85%, .5);
}
.main-header a {
font-family: GothamHTF;
font-size: 16px;
text-decoration: none;
}
.main-header img {
max-height: 50px;
}
.navigation-menu {
float: right;
}
.navigation-menu a {
margin-left: 10px;
}