shared.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* Initialization for all pages */
  2. *{
  3. margin:0;
  4. padding:0;
  5. }
  6. body{
  7. font-family:'Saira',sans-serif;
  8. color: rgb(0, 27, 45);
  9. }
  10. /* General components that should apply to all pages */
  11. table{
  12. border-spacing: 0;
  13. }
  14. th{
  15. color: rgb(240, 252, 255);
  16. padding: 20px;
  17. cursor: pointer;
  18. background: rgb(0, 27, 45);
  19. color: rgb(255, 99, 107);
  20. }
  21. tr{
  22. color: rgb(0, 27, 45);
  23. text-align: center;
  24. }
  25. tr, td{
  26. padding: 5px 20px;
  27. }
  28. tr:nth-of-type(even){
  29. background: rgb(201, 201, 201);
  30. }
  31. tr:nth-of-type(odd){
  32. background: rgb(240, 252, 255);
  33. }
  34. .button{
  35. background: none;
  36. border: 5px solid rgb(255, 99, 107);
  37. text-decoration: none;
  38. border-radius: 10px;
  39. padding: 10px 5px;
  40. color: #001b2d;
  41. cursor: pointer;
  42. font-size: 25px;
  43. box-shadow: 2px 2px 2px black;
  44. transition: 0.3s;
  45. text-align: center;
  46. }
  47. .button:hover{
  48. background: rgb(0, 27, 45);
  49. color: rgb(240, 252, 255);
  50. }
  51. .button-small{
  52. background: none;
  53. border: 2px solid rgb(255, 99, 107);
  54. text-decoration: none;
  55. border-radius: 10px;
  56. padding: 3px 5px;
  57. color: #001b2d;
  58. cursor: pointer;
  59. font-size: 15px;
  60. box-shadow: 1px 1px 1px black;
  61. margin: 0 2px;
  62. transition: 0.3s;
  63. }
  64. .button-small:hover{
  65. background: rgb(0, 27, 45);
  66. color: rgb(240, 252, 255);
  67. }
  68. .line-break{
  69. border: 1px solid rgb(255, 99, 107);
  70. margin: 30px 0;
  71. }
  72. /* Header partial */
  73. .header{
  74. display: flex;
  75. justify-content: space-between;
  76. background: #001b2d;
  77. width: 100%;
  78. height: 75px;
  79. }
  80. .header .logo{
  81. display: flex;
  82. align-items: center;
  83. text-decoration: none;
  84. margin-left: 5px;
  85. }
  86. .header img{
  87. display: inline-block;
  88. max-height: 65px;
  89. margin: 5px;
  90. text-align: center;
  91. }
  92. .header h1{
  93. display: inline-block;
  94. color: rgb(255, 99, 107);
  95. }
  96. .header .logout{
  97. display: flex;
  98. align-items: center;
  99. color: rgb(255, 99, 107);
  100. float: right;
  101. margin-right: 25px;
  102. text-decoration: none;
  103. }
  104. /* Banner partial */
  105. .banner{
  106. width: 100%;
  107. text-align: center;
  108. }
  109. .banner .notification{
  110. background: green;
  111. color: white;
  112. font-weight: bold;
  113. list-style-type: none;
  114. }
  115. .banner .error{
  116. background: red;
  117. color: white;
  118. font-weight: bold;
  119. list-style-type: none;
  120. }
  121. @media screen and (max-width: 600px){
  122. .button{
  123. font-size: 15px;
  124. }
  125. }