Files
jitsi-meet/css/unsupported-browser/_unsupported-desktop-browser.scss

40 lines
928 B
SCSS
Raw Permalink Normal View History

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