forked from irinazheltisheva/-X
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_features.scss
More file actions
40 lines (40 loc) · 990 Bytes
/
_features.scss
File metadata and controls
40 lines (40 loc) · 990 Bytes
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
// Styling for the features section
section.features {
.section-heading {
margin-bottom: 100px;
h2 {
margin-top: 0;
}
p {
margin-bottom: 0;
}
}
.device-container,
.feature-item {
max-width: 325px;
margin: 0 auto;
}
.device-container {
margin-bottom: 100px;
@media(min-width: 992px) {
margin-bottom: 0;
}
}
.feature-item {
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
h3 {
font-size: 30px;
}
i {
font-size: 80px;
display: block;
margin-bottom: 15px;
background: -webkit-linear-gradient(to left, $theme-secondary, $theme-tertiary);
background: linear-gradient(to left, $theme-secondary, $theme-tertiary);
background-clip: text;
-webkit-text-fill-color: transparent;
}
}
}