2017-02-02 18:01:03 +02:00
|
|
|
.unsupported-desktop-browser {
|
|
|
|
|
@include absoluteAligning();
|
2017-01-19 17:47:22 +02:00
|
|
|
|
2017-02-02 18:01:03 +02:00
|
|
|
display: block;
|
|
|
|
|
text-align: center;
|
2017-01-19 17:47:22 +02:00
|
|
|
|
2017-02-02 18:01:03 +02:00
|
|
|
&__title {
|
2017-02-07 16:45:51 +02:00
|
|
|
color: $unsupportedBrowserTitleColor;
|
2017-02-02 18:01:03 +02:00
|
|
|
font-weight: 300;
|
2017-02-07 16:45:51 +02:00
|
|
|
font-size: $unsupportedBrowserTitleFontSize;
|
2017-02-02 18:01:03 +02:00
|
|
|
letter-spacing: 1px;
|
2017-01-19 17:47:22 +02:00
|
|
|
}
|
|
|
|
|
|
2017-02-02 18:01:03 +02:00
|
|
|
&__description {
|
2017-02-07 16:45:51 +02:00
|
|
|
color: $unsupportedDesktopBrowserTextColor;
|
|
|
|
|
font-size: $unsupportedDesktopBrowserTextFontSize;
|
2017-02-02 18:01:03 +02:00
|
|
|
font-weight: 300;
|
|
|
|
|
letter-spacing: 1px;
|
2017-02-07 16:45:51 +02:00
|
|
|
margin-top: 16px;
|
2017-01-19 17:47:22 +02:00
|
|
|
|
|
|
|
|
&_small {
|
2017-02-02 18:01:03 +02:00
|
|
|
@extend .unsupported-desktop-browser__description;
|
2017-02-07 16:45:51 +02:00
|
|
|
font-size: $unsupportedBrowserTextSmallFontSize;
|
2017-01-19 17:47:22 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-02 18:01:03 +02:00
|
|
|
&__link {
|
2023-07-04 12:34:41 +03:00
|
|
|
color: #489afe;
|
2017-02-02 18:01:03 +02:00
|
|
|
@include transition(color .1s ease-out);
|
2017-01-19 17:47:22 +02:00
|
|
|
|
2017-02-02 18:01:03 +02:00
|
|
|
&:hover {
|
2023-07-04 12:34:41 +03:00
|
|
|
color: #287ade;
|
2017-02-02 18:01:03 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
text-decoration: none;
|
2017-01-19 17:47:22 +02:00
|
|
|
|
2017-02-02 18:01:03 +02:00
|
|
|
@include transition(color .1s ease-in);
|
|
|
|
|
}
|
2017-01-19 17:47:22 +02:00
|
|
|
}
|
|
|
|
|
}
|