-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
158 lines (137 loc) · 3.34 KB
/
style.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Inter',sans-serif;
}
:root {
--white: white;
--sidebargray: #f0f0f0;
--bg-color: #ececec;
--sky-blue: #3678ff;
--qpix-blue: #00373a;
--primary-text: #323232;
--secondary-text: #595959;
--sidebargray: #f0f0f0;
--tertiary-text: #898989;
--logo-color: #03f2ff;
}
body {
background-color: var(--bg-color);
}
.btn-bg {
background-image: linear-gradient(to right, var(--logo-color), var(--qpix-blue));
}
.text-primary {
color: var(--primary-text);
}
.text-secondary {
color: var(--secondary-text);
}
.gradient-bottom {
z-index: 20;
width: 100%;
height: 15rem;
background-image: linear-gradient(to bottom, transparent, var(--sidebargray));
position: absolute;
bottom: -1rem;
}
.sec-one-bg{
background-image: linear-gradient(to bottom,var(--white)12%,#f0f0f0 26%,#f0f0f0);
}
.sec-four-bg {
background-image: linear-gradient(to bottom, var(--sidebargray), var(--white));
}
.sec-four-grid-1-bg {
width: 100%;
height: 450px;
min-height: auto;
background-image: url("./src/img/bim_pic/bim_pic_1.jpeg");
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
border: 1px solid #dbdbdb;
text-align: -webkit-center;
}
.sec-four-grid-2-bg {
width: 100%;
height: 450px;
min-height: auto;
background-image: url("./src/img/bim_pic/bim_pic_2.png");
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
border: 1px solid #dbdbdb;
text-align: -webkit-center;
}
.sec-four-grid-3-bg {
width: 100%;
height: 450px;
min-height: auto;
background-image: url("./src/img/bim_pic/bim_pic_3.jpg");
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
border: 1px solid #dbdbdb;
text-align: -webkit-center;
}
.sec-six-bg {
background-image: linear-gradient(to bottom, var(--sidebargray), var(--white));
}
.text-tertuary{
color: var(--tertiary-text);
}
.footer-list li{
color: var(--tertiary-text);
}
.main-video-background{
width: 100%;
}
.secondary-video-background{
width: 100%;
}
/* Add this to your CSS file or inside a <style> tag in the head of your HTML */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
/* overflow: auto; */
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
padding: 20px;
border: 1px solid #888;
width: 80vw;
height: 80vh;
margin-top: 10vh;
margin-left: 10vw;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
#submit_btn{
background-image: linear-gradient(to right, var(--logo-color), var(--qpix-blue)) !important;
}
#preloader{
background: #000 url(src/img/preloader/color_loader.gif) no-repeat center center;
background-size: 30%;
height: 100%;
width: 100%;
position: fixed;
z-index: 100;
}