Spaces:
Runtime error
Runtime error
File size: 2,462 Bytes
930af4a |
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 |
.button {
display: inline-flex;
@if ( get-font-family(heading) != get-font-family(base) ) {
@include font-family(heading);
}
@include font-size(8, mobile, true, false, true);
@if ( get-font-size(8, desktop) != get-font-size(8, mobile) ) {
@include media( '>medium' ) {
@include font-size(8, desktop, true, false, true);
}
}
@include font-weight(semibold);
line-height: 16px;
text-decoration: none !important;
text-transform: uppercase;
background-color: color(bg, 3);
color: color(primary, 1) !important;
border: none;
border-radius: 2px;
cursor: pointer;
justify-content: center;
padding: 16px 32px;
height: 48px;
text-align: center;
white-space: nowrap;
&:hover {
background: lighten(color(bg, 3), 1%);
}
&:active {
outline: 0;
}
&::before {
border-radius: 2px;
}
}
.button-shadow {
position: relative;
&::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
box-shadow: 0 8px 24px rgba(color(bg, 1), .25);
mix-blend-mode: multiply;
transition: box-shadow .15s ease;
}
&:hover {
&::before {
box-shadow: 0 8px 24px rgba(color(bg, 1), .35);
}
}
}
.button-sm {
padding: 8px 24px;
height: 32px;
&.button-shadow {
&::before {
box-shadow: 0 4px 16px rgba(color(bg, 1), .25);
}
&:hover {
&::before {
box-shadow: 0 4px 16px rgba(color(bg, 1), .35);
}
}
}
}
.button-primary {
color: color(typography, 1i) !important;
background-color: color(primary, 1);
&:hover {
background: lighten(color(primary, 1), 1%);
}
&.button-shadow {
&::before {
box-shadow: 0 8px 16px rgba(color(primary, 1), .25);
mix-blend-mode: normal;
}
&:hover {
&::before {
box-shadow: 0 8px 16px rgba(color(primary, 1), .35);
}
}
}
.button-sm {
&.button-shadow {
&::before {
box-shadow: 0 4px 16px rgba(color(primary, 1), .25);
}
&:hover {
&::before {
box-shadow: 0 4px 16px rgba(color(primary, 1), .35);
}
}
}
}
}
.button-block {
display: flex;
}
|