_button.scss
3.58 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* Main Button Area css
============================================================================================ */
.main_btn{
padding: 0px 40px;
background: $baseColor;
z-index: 2;
display: inline-block;
transition: all 400ms linear;
text-align: center;
color: #fff;
font-size: 14px;
font-weight: 600;
font-family: $ral;
line-height: 48px;
border: 1px solid $baseColor;
border-radius: 5px;
@include transition;
&:hover{
color: $baseColor;
box-shadow: none;
background: transparent;
}
}
.main_btn2{
display: inline-block;
background: #f9f9ff;
padding: 0px 45px;
color: $dip;
font-family: $ral;
font-size: 13px;
font-weight: 600;
line-height: 48px;
border-radius: 5px;
outline: none !important;
box-shadow: none !important;
text-align: center;
border: 1px solid #dddddd;
cursor: pointer;
transition: color 0ms linear;
&:hover{
background-image: -moz-linear-gradient( 0deg, rgb(188,43,255) 0%, rgb(114,73,251) 100%);
background-image: -webkit-linear-gradient( 0deg, rgb(188,43,255) 0%, rgb(114,73,251) 100%);
background-image: -ms-linear-gradient( 0deg, rgb(188,43,255) 0%, rgb(114,73,251) 100%);
box-shadow: 0px 10px 30px 0px rgba(115, 73, 251, 0.3);
color: #fff;
}
}
.submit_btn{
width: auto;
display: inline-block;
background: $baseColor;
padding: 0px 50px;
color: #fff;
font-family: $ral;
font-size: 13px;
font-weight: 500;
line-height: 50px;
border-radius: 5px;
outline: none !important;
box-shadow: none !important;
text-align: center;
cursor: pointer;
@include transition;
&:hover{
color: #fff;
}
}
.white_btn{
display: inline-block;
background: #f9f9ff;
padding: 0px 32px;
color: $dip;
font-family: $ral;
font-size: 14px;
font-weight: 600;
line-height: 50px;
border-radius: 5px;
outline: none !important;
box-shadow: none !important;
text-align: center;
cursor: pointer;
@include transition;
box-shadow: -14.142px 14.142px 20px 0px rgba(0, 0, 0, 0.1);
&:hover{
color: $dip;
box-shadow: none;
}
}
.banner_btn{
padding: 0px 38px;
line-height: 48px;
background: $baseColor;
color: #fff;
display: inline-block;
border: 1px solid $baseColor;
border-radius: 5px;
font-size: 14px;
font-family: $ral;
font-weight: 600;
@include transition;
&:hover{
color: $baseColor;
background: transparent;
}
}
.banner_btn2{
padding: 0px 36px;
line-height: 48px;
background: #f9f9ff;
color: $dip;
display: inline-block;
border: 1px solid #eeeeee;
border-radius: 5px;
font-size: 14px;
font-family: $ral;
font-weight: 600;
@include transition;
&:hover{
color: #fff;
background: $baseColor;
border-color: $baseColor;
}
}
/* Main Blog Banner Button Area css
============================================================================================ */
.white_bg_btn{
background: #fff;
display: inline-block;
color: $dip;
line-height: 40px;
padding: 0px 28px;
font-size: 14px;
font-family: $ral;
font-weight: 600;
text-transform: uppercase;
@include transition;
border: none;
&:hover{
background: $baseColor;
color: #fff;
}
}
/* End Main Blog Banner Button Area css
============================================================================================ */
.blog_btn{
border: 1px solid #eeeeee;
background: #f9f9ff;
padding: 0px 32px;
font-size: 13px;
font-weight: 500;
font-family: $ral;
border-radius: 5px;
color: $dip;
line-height: 34px;
display: inline-block;
&:hover{
background: $baseColor;
border-color: $baseColor;
color: #fff;
}
}
/* End Main Button Area css
============================================================================================ */