dashboard.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. *{margin:0;padding:0;font-family:'Saira',sans-serif;}
  2. html{
  3. height: 100%;
  4. max-width: 100%;
  5. }
  6. body{
  7. display: flex;
  8. flex-direction: row;
  9. height: 100%;
  10. max-width: 100%;
  11. }
  12. .contentBlock{
  13. width: 100%;
  14. height: 100vh;
  15. flex: 1;
  16. box-sizing: border-box;
  17. position: relative;
  18. padding-bottom: 25px;
  19. background: rgb(201, 201, 201);
  20. }
  21. .mobileMenuSelector{
  22. display: none;
  23. position: fixed;
  24. left: 13px;
  25. top: -2px;
  26. font-size: 40px;
  27. }
  28. .mobileMenuSelector:active{
  29. color: rgb(255, 99, 107);
  30. }
  31. .sidebarButton{
  32. display: initial;
  33. background: rgb(179, 191, 209);
  34. border: none;
  35. text-decoration: none;
  36. padding: 10px 25px;
  37. color: black;
  38. cursor: pointer;
  39. text-align: center;
  40. font-size: 15px;
  41. min-width: 100px;
  42. margin: 5px;
  43. max-height: 52px;
  44. }
  45. .sidebarButton:hover{
  46. background: rgb(240, 252, 255);
  47. }
  48. .sidebarButton:active{
  49. background: rgb(0, 27, 45);
  50. color: white;
  51. }
  52. .sidebar{
  53. display: flex;
  54. width: 25vw;
  55. height: 100vh;
  56. box-sizing: border-box;
  57. padding: 25px;
  58. transition: width 0.2s;
  59. overflow: hidden;
  60. background: rgb(0, 27, 45);
  61. color: white;
  62. }
  63. .sidebarWide{
  64. width: 40vw;
  65. }
  66. .sidebarHide{
  67. width: 0;
  68. transition: width 0.2s;
  69. margin: 0;
  70. padding: 0;
  71. overflow: hidden;
  72. box-shadow: -1px 0px 10px gray;
  73. }
  74. .sidebarHide > *{
  75. width: 0;
  76. transition: width 0.2s;
  77. visibility: hidden;
  78. }
  79. .sidebarIconButtons{
  80. display: flex;
  81. justify-content: space-between;
  82. width: 100%;
  83. margin-bottom: 10px;
  84. }
  85. .iconButton{
  86. display: flex;
  87. align-items: center;
  88. background: none;
  89. border: none;
  90. cursor: pointer;
  91. padding: 3px;
  92. color: rgb(255, 99, 107);
  93. }
  94. .iconButton:hover{
  95. background: rgb(0, 27, 45);
  96. color: white;
  97. }
  98. .lineBorder{
  99. width: 100%;
  100. border-bottom: 1px solid rgb(255, 99, 107);
  101. margin: 25px;
  102. }
  103. /*
  104. Multi-strand use classes
  105. */
  106. .strand{
  107. flex-direction: column;
  108. height: 100vh;
  109. width: 100%;
  110. padding-bottom: 25px;
  111. box-sizing: border-box;
  112. }
  113. .strandHead{
  114. display: flex;
  115. justify-content: space-between;
  116. width: 100%;
  117. padding: 10px 50px 0 50px;
  118. align-items: center;
  119. box-sizing: border-box;
  120. height: 10%;
  121. }
  122. .strandTitle{
  123. text-align: left;
  124. margin: 15px;
  125. padding: 0;
  126. }
  127. #sidebarCloser{
  128. width: 30px;
  129. background: rgb(0, 27, 45);
  130. color: white;
  131. margin-right: auto;
  132. border: none;
  133. position: fixed;
  134. top: 15px;
  135. left: 15px;
  136. }
  137. .buttonBox{
  138. display: flex;
  139. justify-content: space-around;
  140. margin-top: 50px;
  141. }
  142. .buttonBox > *{
  143. margin-right: 10px;
  144. }
  145. .choosable{
  146. display: flex;
  147. justify-content: space-between;
  148. align-items: center;
  149. background: rgb(0, 27, 45);
  150. color: white;
  151. margin: 2px;
  152. padding: 5px;
  153. text-align: center;
  154. cursor: pointer;
  155. width: 99%;
  156. box-sizing: border-box;
  157. border: none;
  158. font-size: 16px;
  159. }
  160. .choosable.offColor{
  161. background: rgb(179, 191, 209);
  162. color: black;
  163. }
  164. .choosable.offColor{
  165. background: rgb(201, 201, 201);
  166. color: black;
  167. }
  168. .choosable.tall{
  169. padding: 15px;
  170. }
  171. .choosable:hover{
  172. background: rgb(179, 191, 209);
  173. color: black;
  174. }
  175. .choosable.active{
  176. background: rgb(240, 252, 255);
  177. color: black;
  178. }
  179. .searchBar{
  180. display: flex;
  181. align-items: center;
  182. margin-bottom: 10px;
  183. }
  184. .searchButton{
  185. padding: 6px;
  186. background: rgb(0, 27, 45);
  187. cursor: pointer;
  188. color: white;
  189. }
  190. .searchButton:hover{
  191. background: rgb(201, 201, 201);
  192. color: black;
  193. }
  194. .searchButton:active{
  195. background: rgb(179, 191, 209);
  196. color: white;
  197. }
  198. .searchBar .searchInput, .searchBar .searchInput:focus{
  199. border: 4px solid rgb(0, 27, 45);
  200. font-size: 20px;
  201. padding: 1px 0 1px 4px;
  202. }
  203. .dateRange{
  204. display: flex;
  205. flex-direction: column;
  206. align-items: center;
  207. }
  208. .dateRangeInput{
  209. display: flex;
  210. justify-content: space-between;
  211. }
  212. .dateRangeInput p{
  213. margin: 0 5px;
  214. font-size: 20px;
  215. font-weight: bold;
  216. }
  217. .fileUpload{
  218. background: rgb(240, 252, 255);
  219. padding: 5px;
  220. font-size: 16px;
  221. }
  222. .fileUpload::file-selector-button{
  223. background: rgb(0, 27, 45);
  224. color: white;
  225. border: none;
  226. cursor: pointer;
  227. font-size: 18px;
  228. margin: auto 0;
  229. }
  230. .fileUpload::file-selector-button:hover{
  231. background: rgb(201, 201, 201);
  232. color: black;
  233. }
  234. .choosable.selection{
  235. justify-content: left;
  236. background: rgb(240, 252, 255);
  237. color: black;
  238. margin: 2px 0;
  239. width: 100%;
  240. white-space: nowrap;
  241. overflow: hidden;
  242. text-overflow: ellipsis;
  243. }
  244. .chosenSelection{
  245. width: 95%;
  246. margin: 15px auto;
  247. }
  248. .chosenSelection div{
  249. display: flex;
  250. justify-content: space-between;
  251. align-items: center;
  252. height: 32px;
  253. }
  254. .chosenSelection input, .chosenSelection select{
  255. height: 30px;
  256. border: none;
  257. width: 47%;
  258. }
  259. .chosenSelection button{
  260. padding: 0;
  261. margin: 0 5px;
  262. max-height: none;
  263. min-width: none;
  264. }
  265. .tooltipContainer{
  266. position: relative;
  267. }
  268. .tooltipContainer:hover .tooltip{
  269. visibility: visible;
  270. }
  271. .tooltip{
  272. visibility: hidden;
  273. background: rgb(0, 27, 45);
  274. color:rgb(255, 99, 107);
  275. padding: 5px;
  276. position: absolute;
  277. bottom: 35px;
  278. right: -5px;
  279. z-index: 10;
  280. }