-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserivce.css
73 lines (62 loc) · 1.3 KB
/
serivce.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
.service-container {
display: flex;
flex-direction: column;
margin-left: 2rem;
z-index: 1;
display: none;
min-height: 120vh;
}
.service-container .heading {
font-size: 2.5rem;
font-weight: bolder;
font-family: "EB Garamond", serif;
margin-bottom: 4rem;
margin-top: 2rem;
position: relative;
}
.serivice-wrap h1{
color: var(--text-color);
}
.serivice-wrap p{
color: var(--paragraph-color);
}
.service-container .heading::after {
position: absolute;
content: "";
width: 8%;
height: 10%;
background-color: var(--secondary-color);
left: 1px;
bottom: -10px;
}
.service-container .heading::before {
position: absolute;
content: "";
width: 4%;
height: 10%;
background-color:var(--secondary-color);
left: 1px;
bottom: -20px;
}
.service-container .serivice-wrap{
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.service-container .service{
width: 25%;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
background-color:var(--light-background-color);
padding: 2rem;
border-radius: 1rem;
/* margin-top: 4rem; */
}
.service-container .service i{
font-size: 3rem;
color: var(--secondary-color);
}