shared.css 779 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .header{
  2. display: flex;
  3. justify-content: center;
  4. background: #001b2d;
  5. width: 100%;
  6. height: 75px;
  7. }
  8. .header a{
  9. display: flex;
  10. align-items: center;
  11. text-decoration: none;
  12. }
  13. .header img{
  14. display: inline-block;
  15. max-height: 65px;
  16. margin: 5px;
  17. text-align: center;
  18. }
  19. .header h1{
  20. display: inline-block;
  21. color: #ff626b;
  22. }
  23. .banner{
  24. width: 100%;
  25. text-align: center;
  26. min-height: 50px;
  27. }
  28. .banner .notification{
  29. background: green;
  30. color: white;
  31. font-weight: bold;
  32. list-style-type: none;
  33. }
  34. .banner .error{
  35. background: red;
  36. color: white;
  37. font-weight: bold;
  38. list-style-type: none;
  39. }