shared.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. *{
  2. margin:0;
  3. padding:0;
  4. font-family:'Saira',sans-serif;
  5. }
  6. .button{
  7. background: none;
  8. border: 5px solid rgb(255, 99, 107);
  9. text-decoration: none;
  10. border-radius: 10px;
  11. padding: 10px 5px;
  12. color: #001b2d;
  13. cursor: pointer;
  14. font-size: 25px;
  15. box-shadow: 2px 2px 2px black;
  16. }
  17. .line-break{
  18. border: 1px solid rgb(255, 99, 107);
  19. margin: 30px 0;
  20. }
  21. .header{
  22. display: flex;
  23. justify-content: space-between;
  24. background: #001b2d;
  25. width: 100%;
  26. height: 75px;
  27. }
  28. .header .logo{
  29. display: flex;
  30. align-items: center;
  31. text-decoration: none;
  32. margin-left: 5px;
  33. }
  34. .header img{
  35. display: inline-block;
  36. max-height: 65px;
  37. margin: 5px;
  38. text-align: center;
  39. }
  40. .header h1{
  41. display: inline-block;
  42. color: rgb(255, 99, 107);
  43. }
  44. .header .logout{
  45. display: flex;
  46. align-items: center;
  47. color: rgb(255, 99, 107);
  48. float: right;
  49. margin-right: 25px;
  50. text-decoration: none;
  51. }
  52. .banner{
  53. width: 100%;
  54. text-align: center;
  55. }
  56. .banner .notification{
  57. background: green;
  58. color: white;
  59. font-weight: bold;
  60. list-style-type: none;
  61. }
  62. .banner .error{
  63. background: red;
  64. color: white;
  65. font-weight: bold;
  66. list-style-type: none;
  67. }