-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path_pricing.scss
89 lines (89 loc) · 1.77 KB
/
_pricing.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
/* Pricing Ticket */
#pricing{
background: url(../img/background/bg-pricing.jpg);
background-attachment: fixed;
overflow: hidden;
position: relative;
.section-title-header{
.section-title{
color: #fff;
}
p{
color: #fff;
}
}
.price-block-wrapper{
text-align: center;
display: inline-block;
width: 100%;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
background: #ffffff;
padding: 30px;
.icon{
padding: 20px;
i{
font-size: 60px;
color: $preset;
}
}
.colmun-title{
margin-top: 15px;
h5{
font-size: 18px;
line-height: 30px;
color: #212121;
margin-bottom: 5px;
font-weight: 700;
background: #ffffff;
text-transform: uppercase;
}
}
.price{
padding-bottom: 10px;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
h2{
font-size: 38px;
color: #5c5c5c;
line-height: 42px;
margin: 0;
}
p{
font-size: 15px;
color: #5c5c5c;
font-weight: 700;
letter-spacing: 1px;
line-height: 30px;
text-transform: uppercase;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
}
.pricing-list{
padding: 10px 60px 10px 78px;
text-align: left;
ul{
padding-bottom: 15px;
li{
font-size: 15px;
color: #212121;
font-weight: 400;
padding: 2px 0px;
i{
margin-right: 7px;
font-size: 12px;
color: $preset;
}
}
}
}
.btn{
i{
font-size: 12px;
margin-right: 5px;
}
}
}
}