-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathServices.css
43 lines (39 loc) · 898 Bytes
/
Services.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
.services {
display: flex;
flex-direction: column;
align-items: center;
justify-content: column flex-end;
margin: 10px;
padding:10px;
width:50%;
font-size: 25px;
font-weight: bold;
min-width: 100px;
max-height:400px;
background-color: rgb(241, 232, 232);
/* filter: blur(1px);
-webkit-filter: blur(1px); */
z-index: 1;
}
.services > img {
max-height: 300px;
width: 100%;
object-fit: contain;
margin-bottom: 15px;
}
.service_info {
height: 100px;
margin-bottom: 15px;
}
.services > button {
width: 50%;
height: 100px;
background: transparent;
font-weight: bold;
font-size: 30px;
border: 1px solid;
margin-top: 10px;
border-color: rgb(83, 80, 74);
color: black;
cursor: pointer;
}