2019-08-01 15:24:33 +02:00
|
|
|
.home-notification {
|
2020-12-10 21:02:21 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
justify-content: space-between;
|
2019-08-01 15:24:33 +02:00
|
|
|
background: rgba(36, 41, 46, 0.9);
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
|
|
|
|
border-radius: 8px;
|
2019-11-18 21:03:21 +01:00
|
|
|
min-height: 116px;
|
2019-08-01 15:24:33 +02:00
|
|
|
padding: 16px;
|
2019-08-02 22:31:26 +02:00
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (min-width: $break-large) {
|
2019-08-02 22:31:26 +02:00
|
|
|
min-width: 472px;
|
|
|
|
}
|
2019-08-01 15:24:33 +02:00
|
|
|
|
2020-12-10 21:02:21 +01:00
|
|
|
&__content-container {
|
2019-08-01 15:24:33 +02:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2020-12-10 21:02:21 +01:00
|
|
|
&__content {
|
2019-08-01 15:24:33 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--white);
|
2019-08-01 15:24:33 +02:00
|
|
|
}
|
|
|
|
|
2020-12-11 00:40:29 +01:00
|
|
|
&__text-link {
|
|
|
|
@include H7;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--primary-blue);
|
2020-12-11 00:40:29 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-08-01 15:24:33 +02:00
|
|
|
.fa-info-circle {
|
2020-07-15 15:13:40 +02:00
|
|
|
color: #6a737d;
|
2019-08-01 15:24:33 +02:00
|
|
|
}
|
|
|
|
|
2020-12-11 00:40:29 +01:00
|
|
|
& &__checkbox-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2020-12-11 00:40:29 +01:00
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& &__checkbox {
|
|
|
|
height: 13px;
|
|
|
|
width: 13px;
|
|
|
|
font-size: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
& &__checkbox-label {
|
|
|
|
@include H7;
|
|
|
|
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--white);
|
2020-12-11 00:40:29 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 1px;
|
|
|
|
user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-09-17 16:08:02 +02:00
|
|
|
& &__ignore-button {
|
2020-10-30 19:31:42 +01:00
|
|
|
border-color: #6a737d;
|
2019-08-01 15:24:33 +02:00
|
|
|
box-sizing: border-box;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--white);
|
2019-08-01 15:24:33 +02:00
|
|
|
background-color: inherit;
|
|
|
|
height: 34px;
|
|
|
|
width: 155px;
|
|
|
|
padding: 0;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-08-02 22:31:26 +02:00
|
|
|
width: 135px;
|
|
|
|
}
|
|
|
|
|
2019-08-01 15:24:33 +02:00
|
|
|
&:hover {
|
2020-07-15 15:13:40 +02:00
|
|
|
border-color: #6a737d;
|
|
|
|
background-color: #6a737d;
|
2019-08-01 15:24:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: #141618;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-17 16:08:02 +02:00
|
|
|
& &__accept-button {
|
2020-10-30 19:31:42 +01:00
|
|
|
border-color: #6a737d;
|
2019-08-01 15:24:33 +02:00
|
|
|
box-sizing: border-box;
|
2022-01-06 18:35:49 +01:00
|
|
|
color: var(--white);
|
2019-08-01 15:24:33 +02:00
|
|
|
background-color: inherit;
|
|
|
|
height: 34px;
|
|
|
|
width: 155px;
|
|
|
|
padding: 0;
|
2019-08-02 22:31:26 +02:00
|
|
|
margin-left: 4px;
|
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (max-width: $break-small) {
|
2019-08-02 22:31:26 +02:00
|
|
|
width: 135px;
|
|
|
|
}
|
2019-08-01 15:24:33 +02:00
|
|
|
|
|
|
|
&:hover {
|
2020-07-15 15:13:40 +02:00
|
|
|
border-color: #6a737d;
|
|
|
|
background-color: #6a737d;
|
2019-08-01 15:24:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: #141618;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2020-12-10 21:02:21 +01:00
|
|
|
padding-top: 10px;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2019-08-01 15:24:33 +02:00
|
|
|
flex-direction: row-reverse;
|
|
|
|
}
|
|
|
|
|
2020-12-10 21:02:21 +01:00
|
|
|
&__tooltip-wrapper {
|
2019-08-01 15:24:33 +02:00
|
|
|
display: flex;
|
2020-12-10 21:02:21 +01:00
|
|
|
margin-left: 10px;
|
2019-08-01 15:24:33 +02:00
|
|
|
}
|
|
|
|
}
|