shared.css 1001 B

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