-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
91 lines (89 loc) · 2.31 KB
/
input.css
File metadata and controls
91 lines (89 loc) · 2.31 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Euclid Circular';
src: local('Euclid Circular Light'), local('Euclid-Circular-Light'),
url('../public/fonts/EuclidCircularA-Light.woff2') format('woff2'),
url('../public/fonts/EuclidCircularA-Light.woff') format('woff'),
url('../public/fonts/EuclidCircularA-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Euclid Circular';
src: local('Euclid Circular Regular'), local('Euclid-Circular-Regular'),
url('../public/fonts/EuclidCircularA-Regular.woff2') format('woff2'),
url('../public/fonts/EuclidCircularA-Regular.woff') format('woff'),
url('../public/fonts/EuclidCircularA-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Euclid Circular';
src: local('Euclid Circular Medium'), local('Euclid-Circular-Medium'),
url('../public/fonts/EuclidCircularA-Medium.woff2') format('woff2'),
url('../public/fonts/EuclidCircularA-Medium.woff') format('woff'),
url('../public/fonts/EuclidCircularA-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
}
.burger {
height: 12px;
width: 18px;
position: relative;
}
.burger-line {
display: flex;
width: 18px;
height: 2px;
background-color: #715336;
transition: 0.3s all ease;
}
.top-line {
position: absolute;
left: 0;
top: 0%;
}
.mid-line {
position: absolute;
left: 0;
top: 50%;
transform: rotate(0, -50%);
}
.bot-line {
position: absolute;
left: 0;
bottom: 0;
}
.burger.active > .top-line {
transform: translateY(0px) rotate(45deg);
transition: 0.3s all ease;
}
.burger.active > .mid-line {
opacity: 0;
transition: 0.3s all ease;
}
.burger.active > .bot-line {
transform: translateY(-10px) rotate(-45deg);
transition: 0.3s all ease;
}
.header {
z-index: 999 !important;
}
.info-image, .slider-card {
z-index: -1 !important;
}
section {
margin-top: 172px;
}
@media (max-width: 768px) {
section {
margin-top: 100px;
}
}
.sticky a img {
max-width: 100px;
}