shared.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. /* Header partial */
  87. .header{
  88. display: flex;
  89. justify-content: space-between;
  90. background: #001b2d;
  91. width: 100%;
  92. height: 75px;
  93. }
  94. .header .logo{
  95. display: flex;
  96. align-items: center;
  97. text-decoration: none;
  98. margin-left: 5px;
  99. }
  100. .header img{
  101. display: inline-block;
  102. max-height: 65px;
  103. margin: 5px;
  104. text-align: center;
  105. }
  106. .header h1{
  107. display: inline-block;
  108. color: rgb(255, 99, 107);
  109. }
  110. .header .logout{
  111. display: flex;
  112. align-items: center;
  113. color: rgb(255, 99, 107);
  114. float: right;
  115. margin-right: 25px;
  116. text-decoration: none;
  117. }
  118. /* Banner partial */
  119. .banner{
  120. width: 100%;
  121. text-align: center;
  122. }
  123. .banner .notification{
  124. background: green;
  125. color: white;
  126. font-weight: bold;
  127. list-style-type: none;
  128. }
  129. .banner .error{
  130. background: red;
  131. color: white;
  132. font-weight: bold;
  133. list-style-type: none;
  134. }
  135. @media screen and (max-width: 600px){
  136. .button{
  137. font-size: 15px;
  138. }
  139. }