-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss36.css
185 lines (175 loc) · 3.03 KB
/
css36.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* CSS Reset Properties */
*{
margin: 0px;
padding: 0px;
}
/* CSS Variables */
:root{
--navbar-height:59px;
}
.navbar{
display:flex;
position: absolute ;
top: 0px;
height: 73px;
/* flex-direction: column; */
/* position: absolute; */
/* align-items: center; */
/* justify-content: center; */
}
.navbar::before{
content: "";
background-color: black;
height: 100%;
width: 100%;
position: absolute;
opacity: 0.45;
z-index: -1;
}
#logo{
margin: 9px 10px;
}
#logo img{
margin: 1px 10px;
height: 53px;
}
.navbar ul{
display: flex;
}
.navbar ul li{
list-style: none;
margin: 19px 29px;
}
.navbar ul li a{
padding: 10px 10px;
color: black;
text-decoration: none;
font-size: 1.2rem;
color: black;
display: block;
border-radius: 19px;
}
.navbar ul li a:hover{
background-color: white;
color: black;
}
#home::before{
content: "";
background: url("download1.jfif") no-repeat center center/cover;
height: 100%;
width: 100%;
position: absolute;
opacity: 0.9;
top: 0px;
left: 0px;
z-index: -1;
}
#home{
display: flex;
flex-direction: column;
padding: 3px 200px;
height: 760px;
top: 0px;
left: 0px;
justify-content: center;
align-items: center;
}
.h-primary{
font-size: 2.5rem ;
text-align: center;
}
.h-secondary{
font-size: 2.5rem ;
text-align: center;
}
#services{
margin: 34px;
display: flex;
}
.box{
border: 2px solid rgb(220, 21, 21);
/* width: 100px; */
margin: 10px 10px;
border-radius: 30px;
background-color: rgb(188, 186, 183);
padding: 19px 72px;
}
.box img{
height: 100px;
display: block;
margin: auto;
}
.box img
#home p{
font-size: 1rem;
text-align: center;
color: black;
}
.btn{
border: solid 2px black;
padding: 4px 19px;
background-color: white ;
border-radius: 15px;
cursor: pointer;
margin: 5px 5px;
}
.center{
text-align: center;
}
#clients img{
height: 100px;
margin: 10px 34px;
}
#clients {
display: flex;
justify-content: center;
align-items: center;
height: 177px;
}
#client-section{
position: relative;
height: 300px;
}
#client-section::before{
content: "";
height: 100%;
width: 100%;
background: url("img6.jfif") no-repeat center center/cover;
position: absolute;
opacity: 0.5;
z-index: -1;
}
#contact{
position: relative;
}
#contact::before{
content: "";
background: url("img7.jfif") no-repeat center center/cover;
height: 100%;
position: absolute;
width: 100%;
opacity: 0.95;
z-index: -1;
}
footer{
color: white;
background-color: black;
}
#contact-box input,
#contact-box textarea{
width: 100%;
padding: 0.5rem;
border-radius: 9px;
}
#contact-box{
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 30px ;
}
#contact-box form{
width: 40%;
}
#contact-box label{
font-size: 1.4rem
}