-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
115 lines (102 loc) · 1.94 KB
/
Copy pathmain.css
File metadata and controls
115 lines (102 loc) · 1.94 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url("css/const.css");
@import url("components/nav.css");
@import url("components/subscribe.css");
@import url("components/footer.css");
a {
color: inherit;
}
.active-link {
padding: 7px 27px;
background-color: white;
color: #f23058;
border-radius: 6px;
}
.tabs {
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.tabs>li {
cursor: pointer;
}
.bg-grey {
background-color: #f2f2f2;
}
.mt-encriment {
position: relative;
z-index: 1;
}
.contact__input {
font-family: "Open Sans";
font-weight: 600;
font-size: 14px;
line-height: 24px;
padding: 15px 25px;
height: 54px;
box-shadow: none !important;
border-color: #fff !important;
}
.contact__btn {
font-family: "Open Sans";
font-size: 14px;
font-weight: 600;
line-height: 24px;
height: 44px;
padding: 10px 14px;
}
.order_step_tooltip::before {
z-index: -1;
position: absolute;
transform: rotate(45deg) translateX(-50%);
left: 50%;
bottom: -16px;
content: "";
width: 30px;
height: 30px;
background: #FFE7E7;
}
.order_step_tooltip {
width: 400px;
height: max-content;
position: absolute;
top: -75px;
font-size: 12px;
display: flex;
justify-content: flex-start;
align-items: center;
color: #bd5454;
background-color: #FFE7E7;
filter: drop-shadow(0 0 1px #bd5454);
}
.order_step_tooltip i{
font-size: 22px;
}
.lh-lg {
font-family: "Open Sans";
}
.contact__btn {
font-family: "Manrope";
font-size: 16px;
font-weight: 700;
line-height: 24px;
height: 44px;
padding-left: 40px;
padding-right: 40px;
}
@media (max-width: 992px) {
.header-bg {
min-height: 100vh;
height: 100%;
}
}
@media (max-width: 576px) {
.contact__input {
height: 44px;
}
.order_step_tooltip{
width: 250px;
top: -75px;
}
}