admin.css 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. html, body {
  2. margin: 0px;
  3. padding: 0px;
  4. font-family: Roboto, sans-serif;
  5. }
  6. #navigation {
  7. display: inline;
  8. }
  9. #navigation a {
  10. color: white;
  11. text-decoration: none;
  12. font-size: 28px;
  13. }
  14. #navigation a:hover {
  15. color: #E2C261;
  16. }
  17. #navigation ul {
  18. display: inline;
  19. margin: 0px;
  20. padding: 0px;
  21. }
  22. #navigation ul li {
  23. display: inline;
  24. margin: 10px;
  25. }
  26. th, tr{
  27. background-color: lightgray;
  28. }
  29. tr:nth-child(4n+2), tr:nth-child(4n+3){
  30. background-color: white;
  31. }
  32. .edit-row {
  33. display: none;
  34. }
  35. .add-domain {
  36. display: inline-block;
  37. float: right;
  38. border: none;
  39. border: 1px solid gray;
  40. border-radius: 3px;
  41. margin-left: 8px;
  42. background: none;
  43. cursor: pointer;
  44. padding-top: 2px;
  45. margin-top: 2px;
  46. }
  47. .add-domain:hover {
  48. color: #5cb85c;
  49. border: 1px solid #5cb85c;
  50. }
  51. .remove-domain {
  52. border: none;
  53. background: none;
  54. color: gray;
  55. }
  56. .remove-domain:hover {
  57. color: #d9534f;
  58. cursor: pointer;
  59. }
  60. .add-client {
  61. display: inline-block;
  62. float: right;
  63. border: none;
  64. border: 1px solid gray;
  65. border-radius: 3px;
  66. margin-left: 8px;
  67. background: none;
  68. cursor: pointer;
  69. padding-top: 2px;
  70. margin-top: 2px;
  71. }
  72. .add-client:hover {
  73. color: #5cb85c;
  74. border: 1px solid #5cb85c;
  75. }
  76. .remove-client {
  77. border: none;
  78. background: none;
  79. color: gray;
  80. }
  81. .remove-client:hover {
  82. color: #d9534f;
  83. cursor: pointer;
  84. }
  85. .domain {
  86. display: inline-block;
  87. border: 1px solid #dddddd;
  88. background-color: #f2f2f2;
  89. border-radius: 3px;
  90. padding: 2px;
  91. font-size: 14px;
  92. color: #3b73af;
  93. white-space: nowrap;
  94. }
  95. .domain:hover {
  96. border: 1px solid #bbbbbb;
  97. color: #0275d8;
  98. }
  99. .modal-overlay {
  100. display: none;
  101. width: 100%;
  102. height: 100%;
  103. position: absolute;
  104. top: 0px;
  105. left: 0px;
  106. background-color: black;
  107. opacity: 0.4;
  108. position: fixed;
  109. }
  110. .modal-popup {
  111. background-color: white;
  112. display: none;
  113. width: 50%;
  114. position: absolute;
  115. top: 25%;
  116. left: 25%;
  117. margin: auto;
  118. margin-bottom: 25%;
  119. border-radius: 15px;
  120. padding: 15px;
  121. }
  122. .modal-close {
  123. float: right;
  124. border: none;
  125. background: none;
  126. }
  127. .modal-close:hover {
  128. color: #d9534f;
  129. cursor: pointer;
  130. }
  131. .input-row {
  132. margin-top: 10px;
  133. }
  134. .centered {
  135. text-align: center;
  136. }
  137. .modal-popup h1 {
  138. font-size: 24px;
  139. font-weight: normal;
  140. color: gray;
  141. margin: 0px;
  142. padding: 0px;
  143. }
  144. .modal-message {
  145. font-size: 14px;
  146. color: #d9534f;
  147. font-weight: bold;
  148. }
  149. .make-visible {
  150. display: block;
  151. }
  152. .red-text {
  153. color: #d9534f;
  154. }
  155. .blue-text {
  156. color: #3b73af;
  157. }
  158. .green-text {
  159. color: #5cb85c;
  160. }
  161. header {
  162. position: fixed;
  163. top: 0;
  164. left: 0;
  165. right: 0;
  166. background-color: #022e69;
  167. color: white;
  168. padding: 15px;
  169. height: 48px;
  170. line-height: 48px;
  171. vertical-align: middle;
  172. box-shadow: 0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
  173. z-index: 1;
  174. }
  175. #header-spacer {
  176. height: 100px;
  177. }
  178. header img {
  179. height: 100%;
  180. margin-right: 20px;
  181. margin-top: -10px;
  182. }
  183. header h1 {
  184. display: inline-block;
  185. margin: 0px;
  186. padding: 0px;
  187. font-weight: normal;
  188. font-size: 48px;
  189. line-height: 60px;
  190. }
  191. .sidebar {
  192. width: 15%;
  193. float: left;
  194. padding: 15px;
  195. }
  196. .content {
  197. width: 70%;
  198. float: left;
  199. padding: 15px;
  200. }
  201. #login-controls {
  202. float: right;
  203. white-space: nowrap;
  204. padding: 5px;
  205. }
  206. #logout {
  207. border: none;
  208. background: none;
  209. color: white;
  210. transition: all 0.5s ease;
  211. }
  212. #logout:after {
  213. content: " \F011";
  214. font-family: FontAwesome;
  215. position: relative;
  216. font-size: 20px;
  217. }
  218. #logout:hover {
  219. cursor: pointer;
  220. color: #D1B150;
  221. transition: all 0.5s ease;
  222. }
  223. .button {
  224. text-align: center;
  225. background-color: #022e69;
  226. color: white;
  227. border: none;
  228. border: 1px solid #022e69;
  229. padding: 8px;
  230. text-transform: uppercase;
  231. font-weight: bold;
  232. transition: all 0.5s ease;
  233. white-space: nowrap;
  234. position: relative;
  235. cursor:pointer;
  236. }
  237. .button:hover {
  238. transition: all 0.5s ease;
  239. background-color: #D1B150;
  240. border: 1px solid #D1B150;
  241. color: #022e69;
  242. }
  243. .sidebar .button {
  244. margin-bottom: 15px;
  245. }
  246. .edit:after {
  247. content: " \F040";
  248. font-family: FontAwesome;
  249. position: relative;
  250. }
  251. .save {
  252. background-color: #5cb85c;
  253. border-color: #5cb85c;
  254. }
  255. .save:hover {
  256. color: #5cb85c;
  257. background-color: white;
  258. border-color: #5cb85c;
  259. }
  260. .save:after {
  261. content: " \F0C7";
  262. font-family: FontAwesome;
  263. position: relative;
  264. }
  265. .cancel {
  266. background-color: #d9534f;
  267. border-color: #d9534f;
  268. }
  269. .cancel:hover {
  270. color: #d9534f;
  271. background-color: white;
  272. border-color: #d9534f;
  273. }
  274. .continue {
  275. background-color: #5cb85c;
  276. border-color: #5cb85c;
  277. }
  278. .continue:hover {
  279. color: #5cb85c;
  280. background-color: white;
  281. border-color: #5cb85c;
  282. }
  283. .alert-notification {
  284. margin: 20px;
  285. padding: 5px;
  286. background-color: #fC978f;
  287. border-radius: 5px;
  288. color: white;
  289. padding-left: 20px;
  290. padding-right: 20px;
  291. border: 1px solid #d9534f;
  292. }
  293. .alert-notification:before {
  294. content: " \F071";
  295. font-family: FontAwesome;
  296. position: relative;
  297. padding-right: 10px;;
  298. }
  299. .alert-close {
  300. line-height: 30px;
  301. float: right;
  302. border: none;
  303. background: none;
  304. color: #d9534f;
  305. }
  306. .alert-close:hover {
  307. color: white;
  308. cursor: pointer;
  309. }
  310. /*.drop-zone {
  311. outline: 2px dashed #92b0b3;
  312. outline-offset: -10px;
  313. width: 220px;
  314. height: 180px;
  315. background-color: #c8dadf;
  316. padding: 25px;
  317. padding-top: 30px;
  318. margin-left: auto;
  319. margin-right: auto;
  320. transition: all 0.5s ease;
  321. }
  322. .is-dragover {
  323. outline-offset: -20px;
  324. outline-color: #c8dadf;
  325. background-color: #ffffff;
  326. transition: all 0.5s ease;
  327. }*/