_global-view.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @use "variables";
  2. /*=== GLOBAL VIEW */
  3. /*================*/
  4. #stream {
  5. .box.category {
  6. &:not([data-unread="0"]) .box-title .title {
  7. font-weight: bold;
  8. }
  9. .box-title {
  10. padding: 1.5rem;
  11. background: none;
  12. a.title {
  13. color: variables.$grey-dark;
  14. font-size: 1rem;
  15. font-weight: normal;
  16. text-decoration: none;
  17. text-align: left;
  18. text-transform: uppercase;
  19. letter-spacing: 1px;
  20. &:not([data-unread="0"])::after {
  21. margin: -0.5rem 1rem 0 0;
  22. padding: 0 0.75rem;
  23. background: variables.$grey-light;
  24. border-radius: 12px;
  25. position: absolute;
  26. top: 1.75rem;
  27. right: 0;
  28. line-height: 1.5rem;
  29. text-align: center;
  30. }
  31. &:hover {
  32. color: variables.$main-first;
  33. }
  34. }
  35. }
  36. .box-content {
  37. .item.feed {
  38. a {
  39. color: variables.$main-font-color;
  40. font-weight: 400;
  41. &:hover {
  42. color: variables.$main-first;
  43. text-decoration: none;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. }
  50. // the panel that appears in overlay to display the flows
  51. #overlay {
  52. background: rgba(0, 0, 0, 0.65);
  53. }
  54. #panel {
  55. top: 3rem;
  56. right: 3rem;
  57. bottom: 3rem;
  58. left: 3rem;
  59. border-radius: 3px;
  60. }