-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
104 lines (93 loc) · 1.78 KB
/
index.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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: var(--background);
overflow-x: hidden;
overflow-y: scroll;
}
html,
body {
font-size: 62.5%;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
:root {
/* colors */
--background: #f5f5f5;
--gray: #707070;
--red: #cb4a5c;
--green: #5c8f5d;
/* fonts */
--font-header: "Playfair Display", serif;
--font-text: "Raleway", sans-serif;
--font-links: "Montserrat", sans-serif;
/* font-size */
--size-home-category: 3rem;
--size-header: 2.5rem;
--size-header-long: 2rem;
--size-category-selected: 1.8rem;
--size-section-header: 1.4rem;
--size-sub-menu: 1.2rem;
--size-text: 1rem;
}
/*
These styles are for react-slick
margin and initial transform hacks
*/
.slick-slide {
margin: 0 15px;
/* transform: translateX(-45px) !important; */
transform: translateX(-165px) !important;
/* transform: translateX(calc(150px * -1.1)); */
}
.slick-list {
height: 85px;
}
.slick-arrow {
display: none !important;
}
@keyframes opacity {
100% {
opacity: 1;
}
}
@keyframes spin {
100% {
transform: rotate(360deg);
transform-origin: center;
}
}
@keyframes loading {
0%,
100% {
opacity: 1;
}
25%,
75% {
opacity: 0.75;
}
50% {
opacity: 0.5;
}
}
@keyframes modal {
0% {
transform: translateY(10px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
/*
font-family: 'Montserrat', sans-serif;
font-family: 'Playfair Display', serif;
font-family: 'Raleway', sans-serif;
*/