Lemur Pro nixos dotfiles
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.

162 lines
2.6 KiB

2 years ago
  1. $beige:#cec0af;
  2. $darkblue:#242e35;
  3. $lightblue:#2e02d0;
  4. $pink:#f0cad5;
  5. $gray: #3B4442;
  6. $white: #1B2020;
  7. $gray: #2A3331;
  8. $gray: $darkblue;
  9. $green: #7CA198;
  10. $yellow: #DDB278;
  11. $blue: #6080B0;
  12. $purple: #8E6F98;
  13. $cyan: #6ca8cf;
  14. $bg : #000000;
  15. $fg : #ffffff;
  16. $border : #cec0af;
  17. * {
  18. all: unset;
  19. font-family: JetBrains Mono, Sans-serif;
  20. }
  21. .background {
  22. //background-color: #{$darkblue};
  23. background-color: transparent;
  24. color: #{beige};
  25. }
  26. .container {
  27. //background-color: #{$darkblue};
  28. background-color: black;
  29. color: #{$fg};
  30. //border: 5px solid #{$border};
  31. border-radius: 1rem;
  32. margin: 1rem;
  33. padding-top: 1rem;
  34. padding-bottom: 1rem;
  35. }
  36. .musiccontainer {
  37. font-size: 20px;
  38. padding: 10px;
  39. }
  40. .header {
  41. font-size: 30px;
  42. }
  43. .body {
  44. font-size: 20px;
  45. }
  46. .progress {
  47. margin: 1rem;
  48. border-radius:1rem;
  49. min-height: 10px;
  50. }
  51. .bluescale {color: #{$blue};}
  52. .greenscale {color: #{$green};}
  53. .yellowscale {color: #{$yellow};}
  54. .progress scale trough highlight { border-radius: 10px; }
  55. .bluescale scale trough highlight {background-color: #{$blue};}
  56. .greenscale scale trough highlight {background-color: #{$green};}
  57. .yellowscale scale trough highlight {background-color: #{$yellow};}
  58. .purplescale scale trough highlight {background-color: #{$purple};}
  59. .progress scale trough,
  60. {
  61. background-color: $gray;
  62. border-radius: 10px;
  63. min-height: 20px;
  64. min-width: 135px;
  65. margin-left: 20px;
  66. }
  67. // music bar
  68. .musicprogress {
  69. margin: 1rem;
  70. border-radius:1rem;
  71. min-height: 10px;
  72. }
  73. .musicprogress scale trough highlight { border-radius: 10px; }
  74. .musicprogress scale trough,
  75. {
  76. background-color: $gray;
  77. border-radius: 10px;
  78. min-height: 20px;
  79. min-width: 500px;
  80. margin-left: 20px;
  81. }
  82. .music {
  83. margin: 1rem;
  84. padding: 1rem;
  85. background-color: #{$darkblue};
  86. border-radius:2rem;
  87. border: 5px solid #{$border};
  88. font-size: 20px;
  89. }
  90. .musicsel {
  91. padding: 0.1rem;
  92. //background-color: #{$darkblue};
  93. border-radius:2rem;
  94. font-size: 50px;
  95. }
  96. // bar
  97. .box {
  98. margin: 10px;
  99. }
  100. .launch {
  101. margin: 0.5rem;
  102. margin-left:2rem;
  103. margin-right:2rem;
  104. border-radius:5px;
  105. font-size: 50px;
  106. color: black;
  107. background-color: $beige;
  108. }
  109. @keyframes spin {
  110. to { -gtk-icon-transform: rotate(1turn); }
  111. }
  112. .launch:hover {
  113. background-color: $darkblue;
  114. color: white;
  115. animation-name: spin;
  116. animation-duration: 1s;
  117. animation-timing-function: linear;
  118. animation-iteration-count: 1;
  119. }
  120. .launchbutton {
  121. padding: 0.1rem;
  122. padding-left: 1.0rem;
  123. padding-right: 1.0rem;
  124. }
  125. // ad-hoc stuff
  126. .mt-20 {
  127. margin-top: 20px;
  128. }
  129. .beige {
  130. color: $beige;
  131. }