-
Notifications
You must be signed in to change notification settings - Fork 357
/
Copy path_hosting.scss
74 lines (60 loc) · 1.65 KB
/
_hosting.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
.hosting_page {
margin: 0 auto;
padding: 5.625rem 0 2rem 0;
@media (max-width: 767px) {
padding: 5.625rem 32px 2rem 32px;
}
h2 {
text-align: center;
font-weight: 700;
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hosting_providers {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 3.125rem;
.provider_card {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 24px;
flex: 1 0 400px;
max-width: 400px;
@media (max-width: 767px) {
flex: 1 0 300px;
max-width: 300px;
}
border: 1px solid #D2D2D2;
border-radius: 16px;
.details {
text-align: center;
.provider_logo_container {
height: 10rem;
}
h3 {
height: 5rem;
margin: 0;
text-align: center;
font-style: normal;
font-weight: 700;
font-size: 2rem;
line-height: 120%;
}
.operating_since {
height: 1.5rem;
font-size: .9rem;
}
}
.call-to-action {
background-color: #000;
color: #fff;
border-radius: 1000px;
padding: .4rem 2rem;
align-self: center;
}
}
}
}