2016-02-15 18:44:49 +01:00
|
|
|
.clearfix {
|
|
|
|
|
@include clearfix();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
.highlight-word {
|
2016-02-18 20:41:23 +01:00
|
|
|
color: $brand-primary;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
2016-03-24 22:01:33 -04:00
|
|
|
.emphasis-word {
|
2019-08-02 11:11:08 +01:00
|
|
|
font-weight: $font-weight-semi-bold;
|
2016-03-24 22:01:33 -04:00
|
|
|
color: $text-color-emphasis;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
// Close icons
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
.close {
|
2016-02-20 18:31:09 +01:00
|
|
|
@include opacity(20);
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
float: right;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: bold;
|
2016-02-16 10:42:06 +01:00
|
|
|
line-height: $line-height-base;
|
2016-02-15 15:27:41 +01:00
|
|
|
color: $black;
|
2017-12-19 16:22:41 +01:00
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
|
2016-02-20 18:31:09 +01:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
|
|
|
|
color: $black;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
@include opacity(40);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Additional properties for button version
|
|
|
|
|
// iOS requires the button element instead of an anchor tag.
|
|
|
|
|
// If you want the anchor version, it requires `href="#"`.
|
|
|
|
|
button.close {
|
|
|
|
|
padding: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Utility classes
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Quick floats
|
|
|
|
|
.pull-right {
|
2016-02-22 14:20:34 +01:00
|
|
|
float: right !important;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
2016-04-07 19:47:48 -04:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
.pull-left {
|
2016-02-22 14:20:34 +01:00
|
|
|
float: left !important;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Toggling content
|
|
|
|
|
.hide {
|
2016-04-27 10:50:29 +02:00
|
|
|
display: none;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
2016-04-26 09:58:55 +02:00
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
.show {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Visibility
|
|
|
|
|
.invisible {
|
2016-04-26 09:58:55 +02:00
|
|
|
visibility: hidden !important;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// For Affix plugin
|
|
|
|
|
.affix {
|
|
|
|
|
position: fixed;
|
|
|
|
|
}
|
2018-01-29 14:45:45 +01:00
|
|
|
|
|
|
|
|
.d-inline-block {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2018-11-15 12:47:32 +01:00
|
|
|
|
|
|
|
|
.absolute {
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
2018-11-29 18:39:02 +01:00
|
|
|
|
2019-02-04 17:26:20 +01:00
|
|
|
.flex-grow-1 {
|
2018-12-13 07:44:58 +01:00
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-04 17:26:20 +01:00
|
|
|
.flex-shrink-1 {
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex-shrink-0 {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-10 14:39:53 +02:00
|
|
|
.flex-flow-column-nowrap {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-29 18:39:02 +01:00
|
|
|
.center-vh {
|
2019-02-26 10:37:17 -08:00
|
|
|
height: 100%;
|
2018-11-29 18:39:02 +01:00
|
|
|
display: flex;
|
2019-02-26 10:37:17 -08:00
|
|
|
flex-direction: column;
|
2018-11-29 18:39:02 +01:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
}
|
2019-06-10 14:39:53 +02:00
|
|
|
|
|
|
|
|
.align-items-center {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row nowrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|