| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #bannerContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- position: absolute;
- margin-top: 15px;
- pointer-events: none;
- z-index: 100;
- }
- .banner{
- display: flex;
- width: 75%;
- height: 65px;
- margin: 10px auto;
- box-shadow: 0 0 10px black;
- border: 2px solid black;
- background: white;
- }
- .banner > div{
- display: flex;
- align-items: center;
- justify-content: center;
- width: 25%;
- color: white;
- }
- .banner > p{
- display: flex;
- align-items: center;
- font-size: 20px;
- font-weight: bold;
- width: 75%;
- padding-left: 10px;
- }
- .banner > button{
- background: none;
- border: none;
- height: 20px;
- position: relative;
- top: -10px;
- right: -10px;
- cursor: pointer;
- color: white;
- pointer-events: all;
- }
|