-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevelopment.scss
110 lines (92 loc) · 2.06 KB
/
development.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
.development {
.list-with-images {
&__item {
margin-bottom: 3vh;
&-icon img {
border-radius: 9px;
box-shadow: 0px 4px 12px 0px rgba($purple-heart, .5);
}
}
}
&__awards {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 5vh;
img {
width: 100%;
max-width: 140px;
}
}
&__cards {
background: radial-gradient(circle, rgba($buzok, 1) 0%, rgba($white, 1) 60%);
box-shadow: inset -6px 12px 15px -7px $moon_raker;
.card__title-2 {
font-size: 1.25em;
line-height: 1.6;
}
.cards-container {
margin-bottom: 0;
.card {
max-width: 353px;
height: auto;
box-sizing: border-box;
display: flex;
flex-direction: column;
background: rgba($white, .4);
&__icon img {
max-width: 110px;
width: 100%;
height: fit-content;
margin: auto;
}
&__description {
font-size: 16px;
line-height: 21px;
text-align: left;
}
.button {
max-width: 200px;
height: 50px;
margin: 0 auto;
color: $purple-heart;
font-size: 13px;
}
}
}
}
&__offer {
background: $main-gradient;
box-shadow: 2px 2px 20px 4px rgba(0, 0, 0, .25);
}
}
@media screen and (max-width: 767px) {
.development {
&__awards img {
padding-bottom: 3vh;
margin-right: 10px;
margin-left: 10px;
}
&__cards {
background-image: linear-gradient(to top, $buzok, $white);
.card__title-2 { font-size: 16px; }
.cards-container {
.card {
&:not(:last-child) { margin-bottom: 3vh; }
&__description {
margin: 30px 10px 15px;
font-size: 12px;
}
&__icon img { max-width: 90px; }
.button { font-size: 11px; }
}
}
}
.list-with-images {
&__item .description {
font-size: .8em;
line-height: 1.5;
}
}
}
}