File tree 5 files changed +61
-43
lines changed
pages/Home/sections/Contact
5 files changed +61
-43
lines changed Original file line number Diff line number Diff line change
1
+ @use ' ./../../scss/colors' ;
2
+
1
3
.footerDiv {
2
4
position : relative ;
3
5
margin-top : 2rem ;
27
29
overflow : hidden ;
28
30
29
31
.svgPath {
30
- fill : #fff ;
32
+ fill : colors . $white ;
31
33
-webkit-transform-origin : center ;
32
34
-ms-transform-origin : center ;
33
35
transform-origin : center ;
42
44
left : 0 ;
43
45
height : 100% ;
44
46
width : 100% ;
45
- background : #0e1120de ;
47
+ background : colors . $black_0-8 ;
46
48
}
47
49
48
50
.newsletter {
49
51
position : relative ;
50
- color : white ;
52
+ color : colors . $ white ;
51
53
text-align : center ;
52
54
padding : 50px 0 70px 0 ;
53
55
76
78
77
79
.box {
78
80
height : 40px ;
79
- background-color : white ;
81
+ background-color : colors . $ white ;
80
82
border-radius : 30px 0 0 30px ;
81
83
display : flex ;
82
84
align-items : center ;
85
87
86
88
.icon {
87
89
padding : 10px ;
88
- color : dodgerblue ;
90
+ color : colors . $blue1 ;
89
91
min-width : 40px ;
90
92
}
91
93
input {
99
101
.bsClass {
100
102
border-radius : 0 30px 30px 0 ;
101
103
padding : 6px 15px ;
102
- background-color : #4285f4 ;
103
- border : 2px solid #4285f4 ;
104
- color : white ;
104
+ background-color : colors . $blue1 ;
105
+ border : 2px solid colors . $blue1 ;
106
+ color : colors . $ white ;
105
107
106
108
& :hover {
107
- background-color : #1963db ;
108
- border : 2px solid #1963db ;
109
+ background-color : colors . $blue2 ;
110
+ border : 2px solid colors . $blue2 ;
109
111
}
110
112
}
111
113
}
126
128
127
129
.footerText {
128
130
text-align : center ;
129
- color : white ;
131
+ color : colors . $ white ;
130
132
font-weight : 400 ;
131
133
font-size : 1.2rem ;
132
134
padding : 30px ;
Original file line number Diff line number Diff line change
1
+
2
+ @use ' ./../../../../../../scss/colors' ;
3
+
1
4
.info {
2
5
width : 350px ;
3
6
4
7
.general_info {
5
- background : #3d1f90 ;
6
- color : white ;
8
+ background : colors . $blue3 ;
9
+ color : colors . $ white ;
7
10
margin : 0.35rem 1rem ;
8
11
border-radius : 15px ;
9
12
& h2 {
36
39
height : 500px ;
37
40
bottom : -250px ;
38
41
right : -250px ;
39
- background-color : #caebb7eb ;
42
+ background-color : colors . $light-pink ;
40
43
41
44
.circle2 {
42
45
position : absolute ;
45
48
height : 200px ;
46
49
top : -150px ;
47
50
left : -150px ;
48
- background-color : #7174ffeb ;
51
+ background-color : colors . $blue1 ;
49
52
}
50
53
}
51
54
66
69
input {
67
70
width : 100% ;
68
71
border : 0 ;
69
- background : #fcfcfc ;
72
+ background : colors . $light-grey ;
70
73
height : 43px ;
71
74
padding : 0 20px ;
72
75
font-size : 16px ;
73
76
outline : none ;
74
- color : #7b7474 ;
77
+ color : colors . $grey ;
75
78
border-radius : 5px ;
76
79
& :focus {
77
- border : 1px solid white ;
80
+ border : 1px solid colors . $ white ;
78
81
border-radius : 20px ;
79
82
}
80
83
& ::placeholder {
89
92
flex-wrap : wrap ;
90
93
91
94
span {
92
- color : white ;
95
+ color : colors . $ white ;
93
96
font-weight : bold ;
94
97
}
95
98
}
96
99
textarea {
97
100
border-radius : 8px ;
98
101
width : 100% ;
99
102
border : 0 ;
100
- background : #fcfcfc ;
103
+ background : colors . $white2 ;
101
104
font-size : 16px ;
102
105
outline : none ;
103
106
resize : none ;
104
107
padding : 10px ;
105
108
height : 110px ;
106
- color : #7b7474 ;
109
+ color : colors . $grey ;
107
110
}
108
111
.submit {
109
- background : #3d1f90 ;
112
+ background : colors . $blue3 ;
110
113
font-size : 14px ;
111
114
letter-spacing : 4px ;
112
115
font-family : " Open Sans" , sans-serif ;
119
122
text-align : center ;
120
123
cursor : pointer ;
121
124
align-self : flex-end ;
122
- border : 1px #fff solid ;
125
+ border : 1px colors . $white solid ;
123
126
position : relative ;
124
127
overflow : hidden ;
125
- box-shadow : inset 2px 0px 2px white ;
128
+ box-shadow : inset 2px 0px 2px colors . $ white ;
126
129
border-radius : 20px ;
127
130
128
131
.buttonText {
129
132
position : relative ;
130
133
z-index : 1 ;
131
134
font-weight : bolder ;
132
- color : #08fdd8 ;
135
+ color : colors . $light-blue ;
133
136
}
134
137
135
138
.hoverEffect {
138
141
top : 0 ;
139
142
left : 0 ;
140
143
border-radius : 0 50% 100% 0 ;
141
- background-color : #fcfcfc ;
144
+ background-color : colors . $white2 ;
142
145
width : 500px ;
143
146
height : 100% ;
144
147
transform : scale (0 , 1 );
152
155
height : 200% ;
153
156
}
154
157
& .buttonText {
155
- color : #272727 ;
158
+ color : colors . $black_0-8 ;
156
159
}
157
160
}
158
161
}
Original file line number Diff line number Diff line change
1
+ @use ' ./../../../../../../scss/colors' ;
2
+
1
3
.leaflet-container {
2
4
width : 100% ;
3
5
height : 98% ;
9
11
}
10
12
11
13
.leaflet-popup-content-wrapper {
12
- background-color : rgba ( 29 , 24 , 24 , 0.9 ) ;
13
- color : white ;
14
+ background-color : colors . $black_0-8 ;
15
+ color : colors . $ white ;
14
16
}
15
17
16
18
.leaflet-popup-tip {
17
- background-color : rgba ( 29 , 24 , 24 , 0.9 ) ;
19
+ background-color : colors . $black_0-8 ;
18
20
}
19
21
20
22
.leaflet-control-layers.leaflet-control {
21
- background : #1b1b1b ;
23
+ background : colors . $black_0-8 ;
22
24
}
23
25
24
26
.leaflet-control-layers-base {
25
27
display : flex ;
26
28
flex-direction : column ;
27
29
align-items : flex-start ;
28
- color : white ;
30
+ color : colors . $ white ;
29
31
font-family : " Montserrat" ;
30
32
padding : 0.5rem ;
31
33
gap : 8px ;
54
56
width : 230px ;
55
57
padding : 1.5rem ;
56
58
left : 10px ;
57
- background : rgba ( 29 , 24 , 24 , 0.9 ) ;
58
- color : #fff ;
59
+ background : colors . $black_0-8 ;
60
+ color : colors . $white ;
59
61
border-radius : 5px ;
60
62
61
63
a {
66
68
.reCenter {
67
69
border-radius : 100% ;
68
70
right : 10px ;
69
- background : rgba ( 245 , 245 , 245 , 0.9 ) ;
71
+ background : colors . $white2 ;
70
72
padding : 5px ;
71
73
border : none ;
72
- box-shadow : 2px 2px 3px rgb ( 15 , 14 , 14 ) ;
74
+ box-shadow : 2px 2px 3px colors . $black_0-8 ;
73
75
}
74
76
Original file line number Diff line number Diff line change
1
+ @use ' ./../../../../scss/mixin' ;
2
+ @use ' ./../../../../scss/colors' ;
3
+
1
4
.ContactUs {
2
5
text-align : center ;
3
6
margin-top : 5rem ;
4
7
5
8
.titleMain {
6
- font-family : " Poppins" , sans-serif ;
7
- color : #4e89ae ;
8
- font-size : 3rem ;
9
- font-weight : bold ;
10
- text-shadow : 3px 4px 2px #0000002e ;
9
+ @include mixin .section-title ;
11
10
}
12
11
13
12
.contact_and_info_container {
14
13
display : flex ;
15
14
align-items : stretch ;
16
15
justify-content : center ;
17
16
flex-wrap : wrap ;
18
- background : #fff ;
17
+ background : colors . $white ;
19
18
margin : 1rem 0 9rem ;
20
19
21
20
.map {
Original file line number Diff line number Diff line change 1
1
$white : #fff ;
2
2
$white1 : #bcdbee ;
3
+ $white2 :#fcfcfc ;
4
+
3
5
$black_0-3 : #0000004d ;
6
+ $black_0-8 : #000000de ;
4
7
$black : #000 ;
8
+
9
+ $light-pink : #bfdbb4 ;
10
+
11
+ $light-grey :#fcfcfc ;
12
+ $grey : grey ;
13
+
5
14
$light-purple : #376f92 ;
6
15
$purple : #103f5f ;
16
+
7
17
$light-blue : #add8e6 ;
8
18
$steel-blue : #4e89ae ;
9
19
$blue1 :#4285f4 ;
10
- $grey : grey ;
20
+ $blue2 :#1963db ;
21
+ $blue3 :#3d1f90 ;
22
+
11
23
$red : red ;
You can’t perform that action at this time.
0 commit comments