jiti-meet/css/unsupported-browser/_unsupported-desktop-browse...

40 lines
947 B
SCSS
Raw Normal View History

.unsupported-desktop-browser {
@include absoluteAligning();
2017-01-19 15:47:22 +00:00
display: block;
text-align: center;
2017-01-19 15:47:22 +00:00
&__title {
2017-02-07 14:45:51 +00:00
color: $unsupportedBrowserTitleColor;
font-weight: 300;
2017-02-07 14:45:51 +00:00
font-size: $unsupportedBrowserTitleFontSize;
letter-spacing: 1px;
2017-01-19 15:47:22 +00:00
}
&__description {
2017-02-07 14:45:51 +00:00
color: $unsupportedDesktopBrowserTextColor;
font-size: $unsupportedDesktopBrowserTextFontSize;
font-weight: 300;
letter-spacing: 1px;
2017-02-07 14:45:51 +00:00
margin-top: 16px;
2017-01-19 15:47:22 +00:00
&_small {
@extend .unsupported-desktop-browser__description;
2017-02-07 14:45:51 +00:00
font-size: $unsupportedBrowserTextSmallFontSize;
2017-01-19 15:47:22 +00:00
}
}
&__link {
color: $linkFontColor;
@include transition(color .1s ease-out);
2017-01-19 15:47:22 +00:00
&:hover {
color: $linkHoverFontColor;
cursor: pointer;
text-decoration: none;
2017-01-19 15:47:22 +00:00
@include transition(color .1s ease-in);
}
2017-01-19 15:47:22 +00:00
}
}