forked from meshery/meshery.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.scss
122 lines (106 loc) · 1.83 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.features {
@extend %flexbox;
@include flex-flow(wrap);
padding: 50px 0 30px 0;
.feature {
list-style: none;
padding: 0;
margin: 0 10px 50px 10px;
text-align: center;
border: 1px solid #eee;
border-radius: 5px;
box-shadow: 0px 0px 10px #eee;
width: 100%;
&_li{
margin: 0 25px;
margin-left: 35px;
text-align: left;
list-style:circle;
text-align: center;
border-bottom: 1.5px solid rgb(233, 233, 233);
}
.highlighted {
text-align: center;
height: 110px;
font-weight: 600;
color: #272727d3;
font-size: 1.2em;
padding: 30px 15px;
background-color: rgb(247, 247, 247);
border-top-right-radius:0;
border-top-left-radius: 0;
box-shadow: inset 0 2px 12.5px rgba(0,0,0,0.01);
text-transform: capitalize;
}
.features-cta {
padding: 0;
a {
display: block;
box-sizing: border-box;
padding: 20px 0;
border-radius: 0 0 2px 2px;
border: 0;
color: white;
}
.start {
text-align: center;
margin: auto;
position: relative;
background-color: $coolgray;
}
.start:hover {
background-color: $darkgreen;
}
}
@media #{$desktop} {
-webkit-flex: 1;
flex: 1;
min-width: 220px;
}
li {
border-top-right-radius: 5px;
border-top-left-radius: 5px;
padding: 20px 0;
h3 {
padding: 0;
margin: 0;
font-size: 1.75rem;
color: #fff;
font-weight: bold;
}
}
}
}
@media(max-width:1025px){
.highlighted{
height: 90px !important;
}
}
@media(max-width:875px){
.features .feature li{
padding: 30px 0;
}
}
@media(max-width:750px){
.highlighted{
height: 60px !important;
}
}
.faq {
@media #{$desktop} {
@include columns(2);
}
color: #666;
div {
break-inside: avoid;
padding: 25px 0;
}
dt {
font-weight: bold;
margin: 0 0 5px 0;
}
dd {
padding: 0;
margin: 0;
}
}