shared.css 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. display: none;
  27. }
  28. .banner .notification{
  29. background: green;
  30. color: white;
  31. padding: 10px;
  32. margin: 5px;
  33. font-weight: bold;
  34. }
  35. .banner .error{
  36. background: red;
  37. color: white;
  38. padding: 10px;
  39. margin: 5px;
  40. font-weight: bold;
  41. }