dashboard.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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 0;
  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. min-height: 35px;
  160. }
  161. .choosable.offColor{
  162. background: rgb(179, 191, 209);
  163. color: black;
  164. }
  165. .choosable.offColor{
  166. background: rgb(201, 201, 201);
  167. color: black;
  168. }
  169. .choosable.tall{
  170. padding: 15px;
  171. }
  172. .choosable:hover{
  173. background: rgb(179, 191, 209);
  174. color: black;
  175. }
  176. .choosable.active{
  177. background: rgb(240, 252, 255);
  178. color: black;
  179. }
  180. .searchBar{
  181. display: flex;
  182. align-items: center;
  183. margin-bottom: 10px;
  184. }
  185. .searchButton{
  186. padding: 6px;
  187. background: rgb(0, 27, 45);
  188. cursor: pointer;
  189. color: white;
  190. }
  191. .searchButton:hover{
  192. background: rgb(201, 201, 201);
  193. color: black;
  194. }
  195. .searchButton:active{
  196. background: rgb(179, 191, 209);
  197. color: white;
  198. }
  199. .searchBar .searchInput, .searchBar .searchInput:focus{
  200. border: 4px solid rgb(0, 27, 45);
  201. font-size: 20px;
  202. padding: 1px 0 1px 4px;
  203. }
  204. .dateRange{
  205. display: flex;
  206. flex-direction: column;
  207. align-items: center;
  208. }
  209. .dateRangeInput{
  210. display: flex;
  211. justify-content: space-between;
  212. }
  213. .dateRangeInput p{
  214. margin: 0 5px;
  215. font-size: 20px;
  216. font-weight: bold;
  217. }
  218. .fileUpload{
  219. background: rgb(240, 252, 255);
  220. padding: 5px;
  221. font-size: 16px;
  222. }
  223. .fileUpload::file-selector-button{
  224. background: rgb(0, 27, 45);
  225. color: white;
  226. border: none;
  227. cursor: pointer;
  228. font-size: 18px;
  229. margin: auto 0;
  230. }
  231. .fileUpload::file-selector-button:hover{
  232. background: rgb(201, 201, 201);
  233. color: black;
  234. }
  235. .choosable.selection{
  236. justify-content: left;
  237. background: rgb(240, 252, 255);
  238. color: black;
  239. margin: 2px 0;
  240. width: 100%;
  241. white-space: nowrap;
  242. overflow: hidden;
  243. text-overflow: ellipsis;
  244. }
  245. .chosenSelection{
  246. width: 95%;
  247. margin: 15px auto;
  248. }
  249. .chosenSelection div{
  250. display: flex;
  251. justify-content: space-between;
  252. align-items: center;
  253. height: 32px;
  254. }
  255. .chosenSelection input, .chosenSelection select{
  256. height: 30px;
  257. border: none;
  258. width: 47%;
  259. }
  260. .chosenSelection button{
  261. padding: 0;
  262. margin: 0 5px;
  263. max-height: none;
  264. min-width: none;
  265. }
  266. .tooltipContainer{
  267. position: relative;
  268. }
  269. .tooltipContainer:hover .tooltip{
  270. visibility: visible;
  271. }
  272. .tooltip{
  273. visibility: hidden;
  274. background: rgb(0, 27, 45);
  275. color:rgb(255, 99, 107);
  276. padding: 5px;
  277. position: absolute;
  278. bottom: 35px;
  279. right: -5px;
  280. z-index: 10;
  281. }