2015-05-14 16:45:37 +03:00
|
|
|
/* Buttons
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* Base button style */
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Should only be applied to <a> tags */
|
|
|
|
.gh-btn {
|
2015-08-27 13:14:59 +03:00
|
|
|
display: inline-block;
|
2017-02-16 22:50:05 +03:00
|
|
|
outline: none;
|
2017-02-17 17:10:02 +03:00
|
|
|
border: 1px solid color(var(--lightgrey) l(-5%) s(-10%));
|
2017-02-16 22:50:05 +03:00
|
|
|
color: color(var(--lightgrey) l(-27%) blackness(+15%));
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
text-decoration: none !important;
|
|
|
|
user-select: none;
|
|
|
|
fill: color(var(--lightgrey) l(-27%) blackness(+15%));
|
2017-02-17 17:10:02 +03:00
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 0.2s ease;
|
2017-02-16 22:50:05 +03:00
|
|
|
|
|
|
|
-webkit-font-smoothing: subpixel-antialiased;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ALL buttons must have a span for content */
|
|
|
|
.gh-btn span {
|
|
|
|
display: block;
|
2017-04-11 15:09:09 +03:00
|
|
|
overflow: hidden;
|
2017-02-16 22:50:05 +03:00
|
|
|
padding: 0 12px;
|
|
|
|
height: 33px;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
line-height: 33px;
|
|
|
|
font-weight: 400;
|
2015-05-14 16:45:37 +03:00
|
|
|
text-align: center;
|
2017-02-16 22:50:05 +03:00
|
|
|
letter-spacing: 0.2px;
|
2017-02-17 17:10:02 +03:00
|
|
|
border-radius: 4px;
|
2017-04-11 15:09:09 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2017-02-17 17:10:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn:hover {
|
|
|
|
border-color: color(var(--lightgrey) l(-15%) s(-10%));
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* When disabled */
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn.disabled,
|
|
|
|
.gh-btn[disabled],
|
|
|
|
fieldset[disabled] .gh-btn {
|
2015-05-16 14:43:12 +03:00
|
|
|
box-shadow: none;
|
2017-02-16 22:50:05 +03:00
|
|
|
opacity: 0.8;
|
2015-05-14 16:45:37 +03:00
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:23:45 +03:00
|
|
|
.gh-btn svg {
|
2017-03-07 20:28:52 +03:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-08-24 16:14:36 +03:00
|
|
|
|
2017-02-17 17:10:02 +03:00
|
|
|
/* Button highlights
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.gh-btn-hover-blue:hover {
|
|
|
|
border-color: var(--blue);
|
|
|
|
color: var(--blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-hover-green:hover {
|
|
|
|
border-color: var(--green);
|
|
|
|
color: var(--green);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-hover-red:hover {
|
|
|
|
border-color: var(--red);
|
|
|
|
color: var(--red);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-08 16:55:35 +03:00
|
|
|
/* Grey button - First so that other colors will override
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* The background of the button creates 1px gradient border */
|
|
|
|
.gh-btn-grey {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
|
|
|
color: color(var(--darkgrey) l(+15%));
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
fill: var(--darkgrey);
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--lightgrey) l(-3%)),
|
|
|
|
color(var(--lightgrey) l(-8%))
|
|
|
|
);
|
|
|
|
box-shadow: 0 1px 0 rgba(0,0,0,0.05);
|
|
|
|
transition: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-grey span {
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--lightgrey) l(+10%)),
|
|
|
|
color(var(--lightgrey) l(+4%))
|
|
|
|
);
|
|
|
|
box-shadow: 0 1px 0 #fff inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-grey:active,
|
|
|
|
.gh-btn-grey:focus {
|
|
|
|
background: color(var(--midgrey) l(+25%));
|
|
|
|
}
|
|
|
|
.gh-btn-grey:active span,
|
|
|
|
.gh-btn-grey:focus span {
|
|
|
|
background: color(var(--lightgrey) l(+15%));
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Blue button
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* The background of the button creates 1px gradient border */
|
|
|
|
.gh-btn-blue {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
|
|
|
|
fill: #fff;
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--blue) blackness(+10%)),
|
|
|
|
color(var(--blue) l(-15%) saturation(-15%))
|
|
|
|
);
|
|
|
|
box-shadow: 0 1px 0 rgba(0,0,0,0.12);
|
|
|
|
transition: none !important;
|
2015-08-13 11:04:45 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-blue span {
|
|
|
|
background: linear-gradient(
|
2017-02-17 08:50:07 +03:00
|
|
|
color(var(--blue) whiteness(+5%)),
|
|
|
|
color(var(--blue) l(-5%) saturation(-8%)) 60%,
|
|
|
|
color(var(--blue) l(-5%) saturation(-8%)) 90%,
|
|
|
|
color(var(--blue) l(-3%) saturation(-8%))
|
2017-02-16 22:50:05 +03:00
|
|
|
);
|
2017-02-27 09:31:01 +03:00
|
|
|
box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
|
2016-05-08 16:15:04 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-blue:active,
|
|
|
|
.gh-btn-blue:focus {
|
|
|
|
background: color(var(--blue) l(-20%) saturation(-15%));
|
|
|
|
}
|
|
|
|
.gh-btn-blue:active span,
|
|
|
|
.gh-btn-blue:focus span {
|
|
|
|
background: color(var(--blue) l(-7%) saturation(-10%));
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Green button
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the button creates 1px gradient border */
|
|
|
|
.gh-btn-green {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
2015-05-16 14:43:12 +03:00
|
|
|
color: #fff;
|
2017-02-16 22:50:05 +03:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
|
|
|
|
fill: #fff;
|
|
|
|
background: linear-gradient(
|
2017-02-17 17:10:02 +03:00
|
|
|
color(var(--green) blackness(+5%)),
|
|
|
|
color(var(--green) l(-9%) saturation(-9%))
|
2017-02-16 22:50:05 +03:00
|
|
|
);
|
2017-02-17 17:10:02 +03:00
|
|
|
box-shadow: 0 1px 1px rgba(0,0,0,0.14);
|
2017-02-16 22:50:05 +03:00
|
|
|
transition: none !important;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-green span {
|
|
|
|
background: linear-gradient(
|
2017-02-17 17:10:02 +03:00
|
|
|
color(var(--green) whiteness(+4%)),
|
|
|
|
color(var(--green) l(-3%) saturation(-7%)) 60%,
|
|
|
|
color(var(--green) l(-3%) saturation(-7%)) 90%,
|
|
|
|
color(var(--green) l(-3%) saturation(-9%))
|
2017-02-16 22:50:05 +03:00
|
|
|
);
|
2017-02-27 09:31:01 +03:00
|
|
|
box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-green:active,
|
|
|
|
.gh-btn-green:focus {
|
2017-02-17 17:10:02 +03:00
|
|
|
background: color(var(--green) l(-9%) saturation(-9%));
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
|
|
|
.gh-btn-green:active span,
|
|
|
|
.gh-btn-green:focus span {
|
2017-02-17 17:10:02 +03:00
|
|
|
background: color(var(--green) l(-3%) saturation(-7%));
|
2017-02-16 22:50:05 +03:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-15 23:18:24 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
|
|
|
|
/* Red button
|
2015-05-15 23:18:24 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the button creates 1px gradient border */
|
|
|
|
.gh-btn-red {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
2015-05-16 14:43:12 +03:00
|
|
|
color: #fff;
|
2017-02-16 22:50:05 +03:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
|
|
|
|
fill: #fff;
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--red) blackness(+10%)),
|
|
|
|
color(var(--red) l(-15%) saturation(-15%))
|
|
|
|
);
|
|
|
|
box-shadow: 0 1px 0 rgba(0,0,0,0.12);
|
|
|
|
transition: none !important;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-red span {
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--red) whiteness(+7%)),
|
|
|
|
color(var(--red) l(-7%) saturation(-10%)) 60%,
|
|
|
|
color(var(--red) l(-7%) saturation(-10%)) 90%,
|
|
|
|
color(var(--red) l(-4%) saturation(-10%))
|
|
|
|
);
|
2017-02-27 09:31:01 +03:00
|
|
|
box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-red:active,
|
|
|
|
.gh-btn-red:focus {
|
|
|
|
background: color(var(--red) l(-20%) saturation(-15%));
|
|
|
|
}
|
|
|
|
.gh-btn-red:active span,
|
|
|
|
.gh-btn-red:focus span {
|
|
|
|
background: color(var(--red) l(-7%) saturation(-10%));
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-15 23:18:24 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Black button
|
2015-05-15 23:18:24 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the button creates 1px gradient border */
|
|
|
|
.gh-btn-black {
|
|
|
|
padding: 1px;
|
|
|
|
border: 0;
|
2015-05-16 14:43:12 +03:00
|
|
|
color: #fff;
|
2017-02-16 22:50:05 +03:00
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
|
|
|
|
fill: #fff;
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--darkgrey) blackness(+10%)),
|
|
|
|
color(var(--darkgrey) l(-15%) saturation(-15%))
|
|
|
|
);
|
|
|
|
box-shadow: 0 1px 0 rgba(0,0,0,0.12);
|
|
|
|
transition: none !important;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* The background of the span is the main visual element */
|
|
|
|
.gh-btn-black span {
|
|
|
|
background: linear-gradient(
|
|
|
|
color(var(--darkgrey) whiteness(+7%)),
|
|
|
|
color(var(--darkgrey) l(-7%) saturation(-10%)) 60%,
|
|
|
|
color(var(--darkgrey) l(-7%) saturation(-10%)) 90%,
|
|
|
|
color(var(--darkgrey) l(-4%) saturation(-10%))
|
|
|
|
);
|
2017-02-27 09:31:01 +03:00
|
|
|
box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* When clicked or focused with keyboard */
|
|
|
|
.gh-btn-black:active,
|
|
|
|
.gh-btn-black:focus {
|
|
|
|
background: color(var(--darkgrey) l(-20%) saturation(-15%));
|
|
|
|
}
|
|
|
|
.gh-btn-black:active span,
|
|
|
|
.gh-btn-black:focus span {
|
|
|
|
background: color(var(--darkgrey) l(-7%) saturation(-10%));
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2015-05-15 23:18:24 +03:00
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/* Special Buttons
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-white {
|
|
|
|
background: #fff;
|
|
|
|
}
|
2017-04-07 18:23:45 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-white span {
|
|
|
|
height: 38px;
|
2015-05-15 23:18:24 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-icon span {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-04-07 18:23:45 +03:00
|
|
|
justify-content: center;
|
2017-02-16 22:50:05 +03:00
|
|
|
}
|
2017-04-07 18:23:45 +03:00
|
|
|
|
2017-04-11 18:44:37 +03:00
|
|
|
.gh-btn-icon svg,
|
|
|
|
.gh-btn-block svg {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin-right: 0.5em;
|
2017-04-15 16:12:52 +03:00
|
|
|
fill: #fff;
|
2017-04-07 18:23:45 +03:00
|
|
|
}
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
.gh-btn-icon-right svg,
|
|
|
|
svg.gh-btn-icon-right {
|
2017-04-11 18:44:37 +03:00
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2017-04-15 16:12:52 +03:00
|
|
|
.gh-btn-icon svg path {
|
|
|
|
stroke: #fff;
|
|
|
|
}
|
|
|
|
|
2017-04-19 13:27:32 +03:00
|
|
|
.gh-btn-icon-no-margin {
|
2017-04-14 18:16:52 +03:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
/*
|
|
|
|
/* Loading Button Spinner
|
2015-05-14 16:45:37 +03:00
|
|
|
/* ---------------------------------------------------------- */
|
2017-02-16 22:50:05 +03:00
|
|
|
/*
|
2015-05-14 16:45:37 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
Usage: Swap out button>span text with HTML
|
|
|
|
|
|
|
|
<a class="gh-btn gh-btn-blue">
|
|
|
|
<span>
|
|
|
|
<div class="gh-spinner"></div>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.gh-spinner {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
border: rgba(0,0,0,0.2) solid 4px;
|
|
|
|
border-radius: 100%;
|
|
|
|
animation: spin 1s linear infinite;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-spinner:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 9px;
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
background: rgba(0,0,0,0.6);
|
|
|
|
border-radius: 100%;
|
2015-05-14 16:45:37 +03:00
|
|
|
}
|
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/* Button Variations
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
|
|
|
|
.gh-btn-block {
|
2015-05-14 16:45:37 +03:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* Vertically space out multiple block buttons */
|
2017-02-16 22:50:05 +03:00
|
|
|
.gh-btn-block + .gh-btn-block {
|
2015-05-14 16:45:37 +03:00
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2015-05-15 23:18:24 +03:00
|
|
|
/* Specificity overrides */
|
2017-02-16 22:50:05 +03:00
|
|
|
input[type="submit"].gh-btn-block,
|
|
|
|
input[type="reset"].gh-btn-block,
|
|
|
|
input[type="button"].gh-btn-block {
|
2015-05-14 16:45:37 +03:00
|
|
|
width: 100%;
|
|
|
|
}
|
2015-08-10 18:43:49 +03:00
|
|
|
|
2017-02-16 22:50:05 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
/* Button Groups
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
/*
|
|
|
|
|
|
|
|
Usage: CTA buttons grouped together horizontally.
|
|
|
|
|
|
|
|
<div class="gh-btn-group">
|
|
|
|
<a class="gh-btn gh-btn-green" href="#"><span>Button 1</span></a>
|
|
|
|
<a class="gh-btn gh-btn-white" href="#"><span>Button 2</span></a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
.gh-btn-group .gh-btn {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-group .gh-btn:first-of-type {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gh-btn-block + .gh-btn-block {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2017-02-17 08:50:07 +03:00
|
|
|
.gh-btn-link {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-03-08 16:08:20 +03:00
|
|
|
|
2015-08-10 18:43:49 +03:00
|
|
|
/* Spin Buttons!
|
|
|
|
/* ---------------------------------------------------------- */
|
|
|
|
.spinner {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: -2px 0;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
border: rgba(0,0,0,0.2) solid 4px;
|
|
|
|
border-radius: 100px;
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
margin-top: 6px;
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
background: rgba(0,0,0,0.6);
|
|
|
|
border-radius: 100px;
|
|
|
|
}
|