blob: 0c2867223a3c808f536c1f96def31b8f6d48d6e1 (
plain)
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
|
.boxed-btn {
background: #fff;
color: $theme-color4;
display: inline-block;
padding: 18px 44px;
font-family: $font2;
font-size: 14px;
font-weight: 400;
border: 0;
border: 1px solid $theme-color4;
letter-spacing: 3px;
// width: 180px;
text-align: center;
color: $theme-color4 !important;
text-transform: uppercase;
cursor: pointer;
&:hover{
background: $theme-color4;
color: #fff !important;
border: 1px solid $theme-color4;
}
&:focus{
outline: none;
}
&.large-width{
width: 220px;
}
}
.boxed-btn3 {
background: $btn_bg;
font-size: 16px;
font-weight: 400;
border: 1px solid transparent ;
color: #fff;
padding: 19px 43px 23px 43px;
font-family: $font2;
display: inline-block;
line-height: 1;
&:hover{
background: transparent;
color: $btn_bg;
border: 1px solid $btn_bg;
}
&:focus{
outline: none;
}
}
.boxed-btn2 {
background: transparent;
color: #fff;
display: inline-block;
padding: 18px 24px;
font-family: $font2;
font-size: 14px;
font-weight: 400;
border: 0;
border: 1px solid #fff;
letter-spacing: 2px;
text-transform: uppercase;
&:hover{
background: #fff;
color: #131313 !important;
}
&:focus{
outline: none;
}
}
.line-button{
color: #919191;
font-size: 16px;
font-weight: 400;
display: inline-block;
position: relative;
padding-right: 5px;
padding-bottom: 2px;
&::before{
position: absolute;
content: "";
background: #919191;
width: 100%;
height: 1px;
bottom: 0;
left: 0;
}
&:hover{
color: #009DFF;
}
&:hover::before{
background: #009DFF;
}
}
.book_now{
display: inline-block;
font-size: 14px;
color: #009DFF;
border: 1px solid #009DFF;
text-transform: capitalize;
padding: 10px 25px;
&:hover{
background: #009DFF;
color: #fff;
}
}
|