style.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. .body{
  2. width:100%;
  3. margin-left:0;
  4. margin-top:0;
  5. }
  6. .maincontent{
  7. width:100%;
  8. height:100%;
  9. }
  10. .headerbox{
  11. position: fixed;
  12. margin-left:5;
  13. margin-right:5;
  14. margin-top:5;
  15. height:80px;
  16. width:100%;
  17. border-bottom: 1px solid black;
  18. background-color:white;
  19. }
  20. .leftmenubox{
  21. position:fixed;
  22. margin-top:90px;
  23. margin-left:5;
  24. float:left;
  25. width:10%;
  26. height:88%;
  27. background-color:#0e1824;
  28. color:white;
  29. text-align:center;
  30. }
  31. .bottomleftbox{
  32. position:fixed;
  33. left:5;
  34. bottom:5;
  35. width:10%;
  36. height:50px;
  37. background-color:red;
  38. text-align:center;
  39. border-radius: .25rem;
  40. vertical-align: middle;
  41. font-weight: 400;
  42. }
  43. .headerlogo{
  44. width:270px;
  45. }
  46. .button{
  47. display:inline-block;
  48. position:relative;
  49. width:100px;
  50. height:auto;
  51. background-color:#0e1824;
  52. color:white;
  53. text-align:center;
  54. vertical-align: middle;
  55. font-weight: 400;
  56. border-radius: .25rem;
  57. padding: .65rem .75rem;
  58. text-decoration:none;
  59. cursor:pointer;
  60. }
  61. .button:hover{
  62. background-color:black;
  63. text-decoration:none;
  64. }
  65. .button-right{
  66. float:right;
  67. margin-left:5;
  68. }
  69. .button-left{
  70. margin-right:5;
  71. }
  72. .toprightmenu{
  73. position: fixed;
  74. top:20;
  75. right:5;
  76. }
  77. .leftmenumenu{
  78. color:white;
  79. text-decoration:none;
  80. display:inline-block;
  81. padding-top:25;
  82. padding-bottom:10;
  83. }
  84. .leftmenumenu:hover{
  85. color:grey;
  86. }
  87. .contentbox{
  88. display:inline-block;
  89. margin-left:11%;
  90. width:88.5%;
  91. padding-top:90;
  92. }
  93. .launchcollumn{
  94. display:block;
  95. float:left;
  96. width:24%;
  97. border-right: 10px solid white;
  98. height:90%;
  99. overflow-y:auto;
  100. }
  101. .collumnbutton{
  102. display:inline-block;
  103. width:100%;
  104. min-height:35px;
  105. border-bottom: 1px solid black;
  106. text-decoration:none;
  107. text-align:left;
  108. vertical-align: middle;
  109. padding-top:20;
  110. color: black;
  111. }
  112. .collumnbutton:hover{
  113. background-color: #0e1824;
  114. color: white;
  115. }
  116. .repcollumn{
  117. position:fixed;
  118. margin-left:auto;
  119. margin-right:auto;
  120. width:88%;
  121. height:85%;
  122. overflow-y:auto;
  123. overflow-x:hidden;
  124. background-color:#a8a8a8;
  125. border-radius: .25rem;
  126. border: 5px solid black;
  127. }
  128. .reptitle{
  129. display:block;
  130. text-align:center;
  131. border-radius: .25rem;
  132. border: 3px solid black;
  133. width:50%;
  134. padding: .375rem .75rem;
  135. font-size: 35;
  136. margin-top: 15px;
  137. margin-left: auto;
  138. margin-right: auto;
  139. color:black;
  140. }
  141. .reptitle2{
  142. display:block;
  143. text-align:center;
  144. border-radius: .25rem;
  145. border: 3px solid black;
  146. width:25%;
  147. padding: .375rem .75rem;
  148. font-size: 25;
  149. font-weight:700;
  150. margin-top: 15px;
  151. margin-left: auto;
  152. margin-right: auto;
  153. color:black;
  154. }
  155. .reptable{
  156. width:90%;
  157. margin-top:15px;
  158. margin-left: auto;
  159. margin-right: auto;
  160. border: 3px solid black;
  161. font-size:25;
  162. border-collapse: collapse;
  163. color:black;
  164. }
  165. .td, th{
  166. border: 3px solid black;
  167. }
  168. .dashcollumn{
  169. display:block;
  170. float:left;
  171. width:48%;
  172. border-right: 10px solid white;
  173. height:90%;
  174. overflow-y:auto;
  175. }
  176. .dashtable{
  177. width:90%;
  178. margin-top:15px;
  179. margin-left: auto;
  180. margin-right: auto;
  181. border: 1px solid #bdbdbd;;
  182. border-collapse: collapse;
  183. color:black;
  184. }
  185. .tooltip {
  186. position: relative;
  187. }
  188. .tooltip .tooltiptext {
  189. visibility: hidden;
  190. background-color: black;
  191. color: white;
  192. text-align: center;
  193. border-radius: 6px;
  194. padding: 5px 0;
  195. position: absolute;
  196. z-index: 1;
  197. }
  198. .tooltip:hover .tooltiptext {
  199. visibility: visible;
  200. width: 400px;
  201. height:auto;
  202. }
  203. .searchbar {
  204. display:block;
  205. margin-left:auto;
  206. margin-right:auto;
  207. text-align:center;
  208. border-radius: .25rem;
  209. border: 3px solid black;
  210. width:50%;
  211. padding: .375rem .75rem;
  212. }
  213. .button-small{
  214. width:75px;
  215. color:white;
  216. text-align:center;
  217. font-weight: 200;
  218. border-radius: .25rem;
  219. padding: .30rem .25rem;
  220. text-decoration:none;
  221. cursor:pointer;
  222. float: right;
  223. }
  224. .neutral{
  225. background-color:#1a29a1;
  226. }
  227. .success{
  228. background-color:#058b00;
  229. }
  230. .button-small:hover{
  231. background-color:black;
  232. text-decoration:none;
  233. }
  234. .collumnsection{
  235. display:inline-block;
  236. min-height:35px;
  237. border-bottom: 1px solid black;
  238. width: 100%;
  239. text-decoration:none;
  240. text-align:left;
  241. vertical-align: middle;
  242. padding-top:20;
  243. color: black;
  244. }
  245. .input{
  246. margin-top:10px;
  247. width:75%;
  248. height:40px;
  249. border: 3px black solid;
  250. border-radius: .5rem;
  251. }
  252. .inputbtn{
  253. display: inline-block;
  254. min-height:35px;
  255. vertical-align:middle;
  256. height:40px;
  257. width:100%
  258. }
  259. .inputbtn-content {
  260. display:none;
  261. margin-left:5px;
  262. margin-top:5px;
  263. min-width:75px;
  264. background-color:#058b00;
  265. color:white;
  266. text-align:center;
  267. font-weight: 200;
  268. border-radius: .25rem;
  269. padding: .30rem .25rem;
  270. text-decoration:none;
  271. cursor:pointer;
  272. }
  273. .inputbtn:hover .inputbtn-content {
  274. display: inline-block;
  275. }
  276. .inputbtn:hover .inputbtn-content:hover {
  277. background-color:#0e1824;
  278. color:white;
  279. }