No Description

style.css 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. body {
  2. margin:0px;
  3. }
  4. .container {
  5. height:100%;
  6. width:100%;
  7. position: fixed;
  8. z-index: -1
  9. }
  10. .members {
  11. margin-top: 8px;
  12. margin-left: 1em;
  13. margin-right: 1em;
  14. }
  15. /* Add a black background color to the top navigation */
  16. .topnav {
  17. background-color: #ED7D31;
  18. overflow: hidden;
  19. box-shadow: 0 4px 2px 0px gray;
  20. }
  21. /* Style the links inside the navigation bar */
  22. .topnav a {
  23. float: left;
  24. color: black;
  25. text-align: center;
  26. padding: 14px 16px;
  27. text-decoration: none;
  28. font-size: 23px;
  29. }
  30. .topnav a:hover {
  31. background-color: #BA6127;
  32. }
  33. .logo {
  34. padding: 0px 0px ! important;
  35. }
  36. .logo img {
  37. float: left;
  38. height: 54px;
  39. }
  40. /* The Modal (background) */
  41. .modal {
  42. display: none; /* Hidden by default */
  43. position: fixed; /* Stay in place */
  44. z-index: 1; /* Sit on top */
  45. padding-top: 100px; /* Location of the box */
  46. left: 0;
  47. top: 0;
  48. width: 100%; /* Full width */
  49. height: 100%; /* Full height */
  50. overflow: auto; /* Enable scroll if needed */
  51. background-color: rgb(0,0,0); /* Fallback color */
  52. background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  53. }
  54. /* Modal Content */
  55. .modal-content {
  56. background-color: #fefefe;
  57. margin: auto;
  58. padding: 20px;
  59. border: 1px solid #888;
  60. max-width: 10%;
  61. }
  62. /* The Close Button */
  63. .close {
  64. color: #aaaaaa;
  65. float: right;
  66. font-size: 28px;
  67. font-weight: bold;
  68. }
  69. .close:hover, .close:focus {
  70. color: #000;
  71. text-decoration: none;
  72. cursor: pointer;
  73. }
  74. table.dataTable tbody th, table.dataTable tbody td {
  75. text-align: center;
  76. }