You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_unsupported-desktop-browser.scss 947B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .unsupported-desktop-browser {
  2. @include absoluteAligning();
  3. display: block;
  4. text-align: center;
  5. &__title {
  6. color: $unsupportedBrowserTitleColor;
  7. font-weight: 300;
  8. font-size: $unsupportedBrowserTitleFontSize;
  9. letter-spacing: 1px;
  10. }
  11. &__description {
  12. color: $unsupportedDesktopBrowserTextColor;
  13. font-size: $unsupportedDesktopBrowserTextFontSize;
  14. font-weight: 300;
  15. letter-spacing: 1px;
  16. margin-top: 16px;
  17. &_small {
  18. @extend .unsupported-desktop-browser__description;
  19. font-size: $unsupportedBrowserTextSmallFontSize;
  20. }
  21. }
  22. &__link {
  23. color: $linkFontColor;
  24. @include transition(color .1s ease-out);
  25. &:hover {
  26. color: $linkHoverFontColor;
  27. cursor: pointer;
  28. text-decoration: none;
  29. @include transition(color .1s ease-in);
  30. }
  31. }
  32. }