| 1234567891011121314151617181920212223242526272829303132333435363738 |
- body {
- background-color: transparent;
- position: relative; /* Ensure relative positioning for absolute children */
- width: 200px;
- margin: 0 auto;
- text-align: center;
- }
-
- img {
- margin: 0 auto;
- }
-
- video {
- margin: 0 auto;
- }
- #alertVid {
- display: none;
- max-height: 190px;
- max-width: 190px;
- position: relative;
- z-index: 1; /* Ensure it's below nameBox */
- }
- #alertImg {
- display: none;
- max-height: 190px;
- max-width: 190px;
- position: relative;
- z-index: 1; /* Ensure it's below nameBox */
- }
- #textBox {
- display: none;
- position: absolute;
- transform: translateX(-50%); /* Center */
- z-index: 2; /* Ensure it appears above alertImg and alertVid */
- }
|