_announcement.scss 738 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .announcement {
  2. background-color: darken(theme-color(warning), 10%);
  3. border-radius: 20px;
  4. min-height: 40px;
  5. max-width: 600px;
  6. //overflow: hidden;
  7. //white-space: nowrap;
  8. font-weight: lighter;
  9. > span {
  10. margin-right: 10px;
  11. }
  12. &,
  13. &:hover {
  14. color: lighten(theme-color(warning), 56%);
  15. text-decoration: none;
  16. }
  17. &:hover {
  18. background-color: darken(theme-color(warning), 20%);
  19. .announcement-subtext {
  20. background-color: darken(theme-color(warning), 30%);
  21. }
  22. }
  23. &,
  24. .announcement-subtext {
  25. transition: background-color .2s linear;
  26. }
  27. }
  28. .announcement-subtext {
  29. padding: 3px 10px;
  30. border-radius: 20px;
  31. font-weight: bold;
  32. background-color: darken(theme-color(warning), 20%);
  33. }