banner.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #bannerContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 100%;
  6. position: absolute;
  7. margin-top: 15px;
  8. pointer-events: none;
  9. z-index: 100;
  10. }
  11. .banner{
  12. display: flex;
  13. width: 75%;
  14. height: 65px;
  15. margin: 10px auto;
  16. box-shadow: 0 0 10px black;
  17. border: 2px solid black;
  18. background: white;
  19. }
  20. .banner > div{
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. width: 25%;
  25. color: white;
  26. }
  27. .banner > p{
  28. display: flex;
  29. align-items: center;
  30. font-size: 20px;
  31. font-weight: bold;
  32. width: 75%;
  33. padding-left: 10px;
  34. }
  35. .banner > button{
  36. background: none;
  37. border: none;
  38. height: 20px;
  39. position: relative;
  40. top: -10px;
  41. right: -10px;
  42. cursor: pointer;
  43. color: white;
  44. pointer-events: all;
  45. }