Skip to content

Commit 7b2f874

Browse files
Update style.css
1 parent 10e55a4 commit 7b2f874

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

style.css

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ nav ul li a:hover::after{
100100

101101
.about-col-1{
102102
flex-basis: 35%;
103-
background-color: #ef004c;
103+
/* background-color: #ef004c; */
104104

105105
}
106106

@@ -112,6 +112,7 @@ nav ul li a:hover::after{
112112

113113
.about-col-2{
114114
flex-basis:60%;
115+
/* background-color: #b54769; */
115116
}
116117

117118
.sub-title{
@@ -166,7 +167,49 @@ nav ul li a:hover::after{
166167
display: block;
167168
}
168169

170+
/* Services */
171+
#services{
172+
/* background-color: #b54769; */
173+
padding: 20px 0px;
174+
}
175+
.services-list{
176+
display: grid;
177+
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
178+
grid-gap: 40px;
179+
margin-top: 50px;
180+
}
181+
182+
.services-list div{
183+
background: #262626;
184+
padding: 40px;
185+
font-size: 13px;
186+
font-weight: 300;
187+
border-radius: 0px 30px;
188+
transition: 0.5s;
189+
}
169190

191+
.services-list div i{
192+
font-size: 50px;
193+
margin-bottom: 30px;
194+
}
170195

196+
.services-list div h2{
197+
font-size: 30px;
198+
font-weight: 500;
199+
margin-bottom: 15px;
200+
}
201+
202+
.services-list div a{
203+
text-decoration: none; /* To remove underline */
204+
color: #fff;
205+
font-size: 12px;
206+
margin-top: 20px;
207+
display: inline-block;
208+
}
209+
210+
.services-list div:hover{
211+
background-color: #ff004f;
212+
transform: translateY(-15px);
213+
}
171214

172215

0 commit comments

Comments
 (0)