2019-05-14 16:19:30 +00:00
|
|
|
* {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2019-05-13 16:50:34 +00:00
|
|
|
:root {
|
|
|
|
font-size: 10px;
|
|
|
|
font-family: Open Sans, sans-serif;
|
2020-05-11 18:20:13 +00:00
|
|
|
--sib-notifications-theme: var(--color-primary);
|
2019-05-13 16:50:34 +00:00
|
|
|
|
|
|
|
body {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-main-background);
|
|
|
|
color: var(--color-main-text);
|
2019-05-13 16:50:34 +00:00
|
|
|
font-size: 1.6rem;
|
2019-12-18 18:50:47 +00:00
|
|
|
min-height: 100vh;
|
2019-12-12 16:32:00 +00:00
|
|
|
overflow-wrap: break-word;
|
2020-01-18 14:51:43 +00:00
|
|
|
overflow-x: hidden; /* To stop getting horizontal scrolling if anything overflows the width */
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
2019-05-14 15:32:42 +00:00
|
|
|
|
|
|
|
main {
|
|
|
|
display: flex;
|
2020-05-27 06:44:54 +00:00
|
|
|
z-index: 0;
|
2020-01-18 14:51:43 +00:00
|
|
|
overflow: hidden;
|
|
|
|
height: calc(100vh - 83px); /* 83px = height of the header */
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
backface-visibility: hidden;
|
|
|
|
/*will-change: overflow;*/
|
2019-05-14 15:32:42 +00:00
|
|
|
}
|
2020-02-19 16:03:47 +00:00
|
|
|
|
|
|
|
.notLoggedIn {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-18 14:51:43 +00:00
|
|
|
/* Add scrollbar to the left and right menu, and to the content */
|
|
|
|
nav, .views-container {
|
|
|
|
overflow: auto;
|
|
|
|
height: auto;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
}
|
2019-12-18 18:50:47 +00:00
|
|
|
|
2020-01-18 20:43:41 +00:00
|
|
|
/* Custom scrollbar of the left-menu */
|
|
|
|
nav {
|
|
|
|
scrollbar-width: thin;
|
2020-05-11 18:20:13 +00:00
|
|
|
scrollbar-color: var(--color-scrollbar-left-track) var(--color-scrollbar-left-background);
|
2020-01-18 20:43:41 +00:00
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
2020-05-11 18:20:13 +00:00
|
|
|
background: var(--color-scrollbar-left-background);
|
2020-01-18 20:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-scrollbar-left-track);
|
2020-01-18 20:43:41 +00:00
|
|
|
border-radius: 6px;
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 3px solid var(--color-scrollbar-left-background);
|
2020-01-18 20:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 11px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Custom scrollbar of the content */
|
|
|
|
.views-container {
|
|
|
|
scrollbar-width: thin;
|
2020-05-11 18:20:13 +00:00
|
|
|
scrollbar-color: var(--color-scrollbar-right-track) var(--color-scrollbar-right-background);
|
2020-01-18 20:43:41 +00:00
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
2020-05-11 18:20:13 +00:00
|
|
|
background: var(--color-scrollbar-right-background);
|
2020-01-18 20:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-scrollbar-right-track);
|
2020-01-18 20:43:41 +00:00
|
|
|
border-radius: 6px;
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 3px solid var(--color-scrollbar-right-background);
|
2020-01-18 20:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 11px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-18 18:50:47 +00:00
|
|
|
/* Quick fix. Will be removed later */
|
2020-01-07 23:59:44 +00:00
|
|
|
#admin-circles,
|
2020-04-08 10:57:05 +00:00
|
|
|
#admin-projects,
|
|
|
|
#admin-users {
|
2019-12-18 18:50:47 +00:00
|
|
|
display: contents;
|
|
|
|
}
|
|
|
|
|
2020-04-02 16:09:23 +00:00
|
|
|
[hidden],
|
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2019-12-18 18:50:47 +00:00
|
|
|
|
2019-05-13 16:50:34 +00:00
|
|
|
img {
|
|
|
|
max-height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
2019-12-18 18:50:47 +00:00
|
|
|
.h1-like,
|
2019-05-13 16:50:34 +00:00
|
|
|
h2,
|
2019-12-18 18:50:47 +00:00
|
|
|
.h2-like,
|
2019-05-13 16:50:34 +00:00
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2019-12-18 18:50:47 +00:00
|
|
|
font-weight: bold;
|
2019-05-13 16:50:34 +00:00
|
|
|
|
2019-09-25 14:16:17 +00:00
|
|
|
/*span {
|
2019-05-13 16:50:34 +00:00
|
|
|
font-weight: 400;
|
|
|
|
padding-left: 0.85rem;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: '// ';
|
|
|
|
}
|
2019-09-25 14:16:17 +00:00
|
|
|
}*/
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 18:50:47 +00:00
|
|
|
h1, .h1-like {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-h1);
|
2019-05-13 16:50:34 +00:00
|
|
|
font-size: 2rem;
|
2019-12-18 18:50:47 +00:00
|
|
|
text-transform: uppercase;
|
2020-01-06 16:40:58 +00:00
|
|
|
|
|
|
|
&.without-margin {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-12-18 18:50:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2, .h2-like {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-h2);
|
2019-12-18 18:50:47 +00:00
|
|
|
font-size: 1.8rem;
|
|
|
|
text-transform: uppercase;
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
2020-04-02 16:09:23 +00:00
|
|
|
.h2-like {
|
|
|
|
display: block;
|
|
|
|
margin: 14.94px 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-05-13 16:50:34 +00:00
|
|
|
h3 {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-title);
|
2019-09-25 14:16:17 +00:00
|
|
|
font-size: 1.7rem;
|
2020-05-13 13:04:54 +00:00
|
|
|
margin: 0;
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
2020-05-18 12:18:15 +00:00
|
|
|
<<<<<<< HEAD
|
2019-05-14 15:32:42 +00:00
|
|
|
%padding-main {
|
2020-05-27 06:44:54 +00:00
|
|
|
padding: 1.3rem;
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
2019-09-25 14:16:17 +00:00
|
|
|
%padding-block {
|
|
|
|
padding: 3.2rem;
|
|
|
|
}
|
|
|
|
|
2020-05-18 12:18:15 +00:00
|
|
|
=======
|
|
|
|
>>>>>>> d9b2c89... update: flex class added in other files + %padding removed
|
2020-05-18 08:47:43 +00:00
|
|
|
.avatar {
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--color-avatar-background);
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
img {
|
|
|
|
background-color: white;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
object-fit: cover;
|
|
|
|
object-position: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
object {
|
|
|
|
height: 45%;
|
|
|
|
width: 45%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-14 15:32:42 +00:00
|
|
|
.content-box {
|
2019-05-13 16:50:34 +00:00
|
|
|
@include window-style-modal();
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
margin: 2rem 1rem 5rem 2rem;
|
|
|
|
|
2019-05-14 15:32:42 +00:00
|
|
|
&.full-width {
|
2020-05-11 18:20:13 +00:00
|
|
|
background: var(--color-white);
|
2019-05-14 15:32:42 +00:00
|
|
|
flex: 1;
|
2019-09-25 14:16:17 +00:00
|
|
|
font-size: 1.6rem;
|
2019-05-14 15:32:42 +00:00
|
|
|
margin: 0 auto;
|
2019-12-18 18:50:47 +00:00
|
|
|
min-height: 100%;
|
2019-05-14 15:32:42 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-13 16:50:34 +00:00
|
|
|
|
2020-04-02 16:09:23 +00:00
|
|
|
/* Header inside circle, project view */
|
2019-09-25 14:16:17 +00:00
|
|
|
.content-box__header {
|
2020-05-11 18:20:13 +00:00
|
|
|
border-bottom: 1px solid var(--color-content-header);
|
2019-12-18 18:50:47 +00:00
|
|
|
padding: 3rem;
|
2019-09-25 14:16:17 +00:00
|
|
|
|
2020-01-19 12:19:25 +00:00
|
|
|
@include breakpoint(sm) {
|
2020-05-11 18:20:13 +00:00
|
|
|
background: var(--color-grey-10);
|
2020-01-19 12:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sib-display {
|
|
|
|
@include breakpoint(sm) {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-sidebar-button {
|
|
|
|
@include breakpoint(sm) {
|
|
|
|
float: right;
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-secondary);
|
2020-01-20 12:57:03 +00:00
|
|
|
font-size: 1.8rem;
|
|
|
|
font-weight: bold!important;
|
2020-01-19 12:19:25 +00:00
|
|
|
|
2020-01-20 12:57:03 +00:00
|
|
|
&::before {
|
|
|
|
font-size: 2.2rem;
|
|
|
|
font-weight: normal;
|
|
|
|
margin-right: 1.2rem;
|
2020-01-19 12:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint($min: 1025px, $max: 0) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-25 14:16:17 +00:00
|
|
|
div {
|
|
|
|
|
2019-12-18 18:50:47 +00:00
|
|
|
.h1-aside {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
|
|
|
&:not(:empty)::before {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-grey-4);
|
2019-12-19 13:10:09 +00:00
|
|
|
content: ' - ';
|
2019-12-18 18:50:47 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-grey-4);
|
2019-12-18 18:50:47 +00:00
|
|
|
|
2019-09-25 14:16:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-grey-4);
|
2019-12-18 18:50:47 +00:00
|
|
|
font-weight: normal;
|
2019-09-25 14:16:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-02 16:09:23 +00:00
|
|
|
.content-box__info {
|
|
|
|
flex-direction: column;
|
2020-05-18 12:18:15 +00:00
|
|
|
padding: 3.2rem;
|
2020-04-02 16:09:23 +00:00
|
|
|
}
|
|
|
|
|
2020-05-13 13:39:42 +00:00
|
|
|
/*.modal {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-white);
|
2019-12-18 18:50:47 +00:00
|
|
|
margin: 75px;
|
|
|
|
padding: 40px;
|
|
|
|
max-height: 85vh;
|
|
|
|
text-align: center;
|
2019-06-05 09:45:41 +00:00
|
|
|
|
2019-12-18 18:50:47 +00:00
|
|
|
img {
|
|
|
|
max-width: 75%;
|
|
|
|
}
|
2019-10-23 11:55:42 +00:00
|
|
|
|
2019-12-18 18:50:47 +00:00
|
|
|
sib-link {
|
|
|
|
font-size: 2.7rem;
|
|
|
|
position: absolute;
|
|
|
|
right: 32px;
|
|
|
|
top: 32px;
|
2019-10-28 17:38:14 +00:00
|
|
|
|
2019-12-18 18:50:47 +00:00
|
|
|
button {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-secondary);
|
2019-10-28 17:38:14 +00:00
|
|
|
}
|
2019-10-23 11:55:42 +00:00
|
|
|
}
|
2020-05-13 13:39:42 +00:00
|
|
|
}*/
|
2019-10-23 11:55:42 +00:00
|
|
|
|
2020-05-13 13:04:54 +00:00
|
|
|
.admin-header {
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 5rem;
|
|
|
|
}
|
|
|
|
|
2019-05-14 15:32:42 +00:00
|
|
|
.backlink {
|
2019-11-08 10:34:30 +00:00
|
|
|
@include icon('arrow-left-circle');
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-backlink);
|
2019-05-14 15:32:42 +00:00
|
|
|
font-size: 1.5rem;
|
|
|
|
margin: 2rem 0 0 2rem;
|
|
|
|
text-decoration: underline;
|
2019-05-13 16:50:34 +00:00
|
|
|
|
2019-05-14 15:32:42 +00:00
|
|
|
&::before {
|
|
|
|
font-size: 2rem;
|
|
|
|
margin-right: 1rem;
|
2019-11-08 10:34:30 +00:00
|
|
|
text-decoration: none;
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
2020-04-02 16:09:23 +00:00
|
|
|
|
|
|
|
&.right {
|
|
|
|
display: block;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2019-05-13 16:50:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 17:14:50 +00:00
|
|
|
.centered {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-05-18 08:47:43 +00:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2020-05-18 13:07:25 +00:00
|
|
|
.button-end {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-11-06 14:44:53 +00:00
|
|
|
.space-between {
|
|
|
|
justify-content: space-between;
|
2019-11-11 10:50:10 +00:00
|
|
|
padding-bottom: 1.4rem;
|
2019-11-06 14:44:53 +00:00
|
|
|
}
|
|
|
|
|
2019-06-18 06:48:32 +00:00
|
|
|
.section {
|
2020-05-11 18:20:13 +00:00
|
|
|
border-bottom: 1px solid var(--color-grey-10);
|
2019-06-18 06:48:32 +00:00
|
|
|
padding: 4.5rem;
|
|
|
|
}
|
|
|
|
|
2019-12-19 13:10:09 +00:00
|
|
|
.word-spacing-left {
|
|
|
|
margin-left: 0.60rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.word-spacing-right {
|
|
|
|
margin-right: 0.60rem;
|
|
|
|
}
|
|
|
|
|
2019-05-13 16:50:34 +00:00
|
|
|
// Compatibility layer for non-updated components
|
|
|
|
@import 'compat';
|
2019-05-14 15:32:42 +00:00
|
|
|
// Other base components
|
|
|
|
@import 'form';
|
2020-01-08 16:29:23 +00:00
|
|
|
@import 'table';
|
2019-05-14 15:32:42 +00:00
|
|
|
@import 'header';
|
2019-10-28 11:08:22 +00:00
|
|
|
@import 'menu-left';
|
2020-04-02 16:09:23 +00:00
|
|
|
@import 'user-thumb';
|
2019-11-05 16:52:34 +00:00
|
|
|
|
|
|
|
// Button global CSS
|
|
|
|
sib-delete,
|
|
|
|
sib-route,
|
|
|
|
sib-link,
|
|
|
|
button,
|
|
|
|
input[type='submit'],
|
|
|
|
a,
|
|
|
|
.button {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2019-11-08 10:34:30 +00:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
2019-11-05 16:52:34 +00:00
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
&.button {
|
|
|
|
padding: 0.55rem 2.5rem;
|
|
|
|
border-radius: 100em;
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2019-11-05 16:52:34 +00:00
|
|
|
font-size: 1.4rem;
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-06 09:46:09 +00:00
|
|
|
&.btn-margin-left {
|
|
|
|
margin-left: 2.2rem;
|
|
|
|
}
|
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.small {
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2019-11-05 16:52:34 +00:00
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.text-bold {
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2019-11-05 16:52:34 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.text-uppercase {
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2019-11-05 16:52:34 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.rounded {
|
|
|
|
border-radius: 50%;
|
2020-04-08 10:57:05 +00:00
|
|
|
font-size: 1.8rem;
|
|
|
|
padding: 1rem;
|
2019-11-05 18:58:40 +00:00
|
|
|
}
|
2019-11-05 16:52:34 +00:00
|
|
|
|
|
|
|
&.button-link {
|
|
|
|
border-radius: 100em;
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2019-11-05 16:52:34 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.with-icon::before {
|
|
|
|
font-size: 1.6rem;
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2020-05-11 18:20:13 +00:00
|
|
|
&.button-primary{
|
|
|
|
background-color: var(--color-white);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-primary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.bordered {
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 1px solid var(--color-primary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-primary);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-white);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2020-05-11 18:20:13 +00:00
|
|
|
&.button-secondary {
|
|
|
|
background-color: var(--color-white);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-secondary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.bordered {
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 1px solid var(--color-secondary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-secondary);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-white);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2020-05-11 18:20:13 +00:00
|
|
|
&.button-complementary {
|
|
|
|
color: var(--color-complementary);
|
|
|
|
background-color: var(--color-white);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.bordered {
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 1px solid var(--color-complementary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-complementary);
|
|
|
|
color: var(--color-white);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2020-02-24 14:10:02 +00:00
|
|
|
&.flex {
|
2019-11-06 09:46:09 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.reversed {
|
2020-05-11 18:20:13 +00:00
|
|
|
&.button-primary {
|
|
|
|
background-color: var(--color-primary);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-white);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-white);
|
|
|
|
color: var(--color-primary);
|
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
|
|
|
color: var(--color-primary);
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.bordered {
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 1px solid var(--color-primary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-11 18:20:13 +00:00
|
|
|
&.button-secondary {
|
|
|
|
background-color: var(--color-secondary);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-white);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-white);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-secondary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.bordered {
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 1px solid var(--color-secondary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2020-05-11 18:20:13 +00:00
|
|
|
&.button-complementary {
|
|
|
|
background-color: var(--color-complementary);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-white);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&:hover {
|
2020-05-11 18:20:13 +00:00
|
|
|
background-color: var(--color-white);
|
2019-11-05 18:58:40 +00:00
|
|
|
|
|
|
|
*,
|
|
|
|
& {
|
2020-05-11 18:20:13 +00:00
|
|
|
color: var(--color-complementary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
2019-11-05 18:58:40 +00:00
|
|
|
|
2019-11-05 16:52:34 +00:00
|
|
|
&.bordered {
|
2020-05-11 18:20:13 +00:00
|
|
|
border: 1px solid var(--color-complementary);
|
2019-11-05 16:52:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-06 17:44:02 +00:00
|
|
|
}
|