-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
126 lines (120 loc) · 2.4 KB
/
styles.css
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
123
124
125
126
html {
font-family: "Montserrat", sans-serif;
color: #fff;
}
.green {
background-color: #5bb189;
}
.blue {
background-color: #3a6ba5;
}
.orange {
background-color: #ec632a;
}
.price-product {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #141b1c;
}
.price-card {
width: 380px;
height: 770px;
position: relative;
overflow: hidden;
margin-right: 18px;
background-color: #334247;
}
.price-card:last-child {
margin-right: 0;
}
.price-card__head {
display: flex;
flex-direction: column;
align-items: center;
height: 64px;
margin: 0 auto;
padding: 33px 0;
}
.price-card__title {
font-size: 35px;
line-height: 43px;
margin: 0;
}
.price-card__subtitle {
font-size: 20px;
line-height: 24px;
margin: 0;
}
.price-card__price {
font-size: 55px;
line-height: 67px;
text-align: center;
margin: 0;
padding: 19px 0;
}
.price-card__popular {
position: absolute;
right: -30px;
top: -2px;
transform: rotate(45deg);
width: 147px;
font-size: 14px;
line-height: 17px;
text-align: center;
padding: 4px 0;
background-color: #dc3f45;
}
.price-card__info {
width: 327px;
font-weight: 300;
font-size: 15px;
line-height: 18px;
margin: 40px auto;
text-align: center;
}
.price-card__options-list {
margin: 0;
}
.price-card__profit {
display: flex;
height: 50px;
align-items: center;
}
.price-card__profit:nth-child(odd) {
background-color: #2a34387f;
}
.price-card__profit-img {
display: block;
width: 15px;
height: 13px;
margin: 0 22px;
}
.price-card__profit-img-green {
background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_green.png);
}
.price-card__profit-img-blue {
background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_blue.png);
}
.price-card__profit-img-orange {
background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_orange.png);
}
.price-card__profit-item {
font-weight: 300;
font-size: 15px;
line-height: 18px;
}
.price-card__order-btn {
display: block;
width: 154px;
height: 40px;
text-align: center;
margin: 39px auto 40px auto;
border: 0;
border-radius: 20px;
font-size: 14px;
line-height: 17px;
color: #fff;
}
/*# sourceMappingURL=styles.css.map */