shared.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. form{
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: center;
  38. border: 2px solid rgb(0, 27, 45);
  39. padding: 25px;
  40. border-radius: 10px;
  41. margin: 10px;
  42. background: rgb(240, 252, 255);
  43. box-shadow: 1px 1px 1px rgb(0, 27, 45);
  44. }
  45. form > *{
  46. margin: 10px;
  47. }
  48. .button{
  49. background: none;
  50. border: 5px solid rgb(255, 99, 107);
  51. text-decoration: none;
  52. border-radius: 10px;
  53. padding: 10px 5px;
  54. color: #001b2d;
  55. cursor: pointer;
  56. font-size: 25px;
  57. box-shadow: 2px 2px 2px black;
  58. transition: 0.3s;
  59. text-align: center;
  60. }
  61. .button:hover{
  62. background: rgb(0, 27, 45);
  63. color: rgb(240, 252, 255);
  64. }
  65. .button-small{
  66. background: none;
  67. border: 2px solid rgb(255, 99, 107);
  68. text-decoration: none;
  69. border-radius: 10px;
  70. padding: 3px 5px;
  71. color: #001b2d;
  72. cursor: pointer;
  73. font-size: 15px;
  74. box-shadow: 1px 1px 1px black;
  75. margin: 0 2px;
  76. transition: 0.3s;
  77. }
  78. .button-small:hover{
  79. background: rgb(0, 27, 45);
  80. color: rgb(240, 252, 255);
  81. }
  82. .line-break{
  83. border: 1px solid rgb(255, 99, 107);
  84. margin: 30px 0;
  85. }
  86. .input-error{
  87. border-color: red;
  88. }
  89. /* Header partial */
  90. .header{
  91. display: flex;
  92. justify-content: space-between;
  93. background: #001b2d;
  94. width: 100%;
  95. height: 75px;
  96. }
  97. .header .logo{
  98. display: flex;
  99. align-items: center;
  100. text-decoration: none;
  101. margin-left: 5px;
  102. }
  103. .header img{
  104. display: inline-block;
  105. max-height: 65px;
  106. margin: 5px;
  107. text-align: center;
  108. }
  109. .header h1{
  110. display: inline-block;
  111. color: rgb(255, 99, 107);
  112. }
  113. .header .logout{
  114. display: flex;
  115. align-items: center;
  116. color: rgb(255, 99, 107);
  117. float: right;
  118. margin-right: 25px;
  119. text-decoration: none;
  120. }
  121. /* Banner partial */
  122. .banner{
  123. width: 100%;
  124. text-align: center;
  125. list-style-type: none;
  126. font-weight: bold;
  127. color: white;
  128. }
  129. .banner .notification{
  130. background: rgb(201, 201, 201);
  131. list-style-type: none;
  132. padding: 3px;
  133. color: black;
  134. }
  135. .banner .error{
  136. background: rgb(255, 99, 107);
  137. list-style-type: none;
  138. padding: 5px;
  139. color: white;
  140. }
  141. @media screen and (max-width: 600px){
  142. .button{
  143. font-size: 15px;
  144. }
  145. }