123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- .boxed-btn {
- background: #fff;
- color: #DB9A64;
- display: inline-block;
- padding: 18px 44px;
- font-family: $font1;
- font-size: 14px;
- font-weight: 400;
- border: 0;
- border: 1px solid #DB9A64;
- letter-spacing: 3px;
- // width: 180px;
- text-align: center;
- color: #DB9A64 !important;
- text-transform: uppercase;
- cursor: pointer;
- &:hover{
- background: #DB9A64;
- color: #fff !important;
- border: 1px solid #DB9A64;
- }
- &:focus{
- outline: none;
- }
- &.large-width{
- width: 220px;
- }
- }
- .boxed-btn3 {
- /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#001D38+0,fd8e5e+100 */
- background: #DB9A64 ;/* IE6-9 */
- color: #fff;
- display: inline-block;
- padding: 19px 50px;
- font-family: $font1;
- font-size: 14px;
- font-weight: 500;
- border: 0;
- // border: 1px solid transparent;
- @include border-radius(0px);
- // width: 180px;
- text-align: center;
- color: #fff;
- text-transform: capitalize;
- @include transition(.3s);
- cursor: pointer;
- // letter-spacing: 2px;
- letter-spacing: 2px;
- &:hover{
- /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#001D38+0,fd8e5e+100 */
- background: #001D38 ; /* IE6-9 */
- color: #fff !important;
- // border: 1px solid #001D38;
- }
- &:focus{
- outline: none;
- }
- &.large-width{
- width: 220px;
- }
- }
- .boxed-btn3-white {
- color: #fff;
- display: inline-block;
- padding: 13px 27px;
- font-family: $font1;
- font-size: 14px;
- font-weight: 400;
- border: 0;
- border: 1px solid #fff;
- @include border-radius(5px);
- // width: 180px;
- text-align: center;
- color: #fff !important;
- text-transform: capitalize;
- @include transition(.5s);
- cursor: pointer;
- letter-spacing: 2px;
- &:hover{
- background: #28AE61;
- color: #fff !important;
- border: 1px solid transparent;
- }
- i{
- margin-right: 2px;
- }
- &:focus{
- outline: none;
- }
- &.large-width{
- width: 220px;
- }
- }
- .boxed-btn3-line {
- color: #fff !important;
- display: inline-block;
- padding: 14px 47px;
- font-family: $font1;
- font-size: 14px;
- font-weight: 500;
- border: 0;
- border: 1px solid #001D38;
- @include border-radius(0px);
- // width: 180px;
- text-align: center;
- text-transform: capitalize;
- @include transition(.5s);
- background: #001D38;
- cursor: pointer;
- letter-spacing: 2px;
- &:hover{
- color: #001D38 !important;
- border: 1px solid #001D38;
- /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#001D38+0,fd8e5e+100 */
- background: #fff;
- }
- &:focus{
- outline: none;
- }
- &.large-width{
- width: 220px;
- }
- }
- .boxed-btn2 {
- background: transparent;
- color: #fff;
- display: inline-block;
- padding: 18px 24px;
- font-family: $font1;
- 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;
- }
- }
|