Spaces:
Running
Running
File size: 832 Bytes
00972a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
}
.container {
text-align: center;
width: 100%; /* Allow the container to take full width */
}
h1 {
margin-bottom: 20px;
}
iframe {
width: 100%; /* Set to 300% */
max-width: none; /* Remove max-width restriction */
height: 450px; /* Adjust height as needed */
border: 1px solid #ccc;
margin: 0 auto; /* Center the iframe */
display: block; /* Ensures margin auto works */
}
#status, #currentTime {
margin-top: 20px;
font-size: 18px;
}
button {
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
|