forked from solygambas/html-css-javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_features.scss
52 lines (45 loc) · 811 Bytes
/
_features.scss
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
.features-container {
background: #323232;
position: relative;
z-index: 0;
overflow: hidden;
.wave {
position: absolute;
left: 0;
bottom: -25%;
width: 100%;
z-index: -1;
}
}
.features {
min-height: 90vh;
width: 80%;
margin: auto;
display: flex;
flex-direction: column;
justify-content: space-around;
.cards {
display: flex;
justify-content: space-between;
color: var(--black);
.card {
background: white;
margin: 0rem 5rem;
display: flex;
flex-direction: column;
text-align: center;
border-radius: 0.625rem;
overflow: hidden;
h4 {
margin: 2rem 0rem 1rem;
}
p {
padding: 2rem;
color: #686868;
}
img {
object-fit: cover;
}
}
}
}