Spaces:
Running
Running
File size: 1,275 Bytes
9e5bf79 e9a0f68 9e5bf79 e9a0f68 9e5bf79 e9a0f68 9e5bf79 e9a0f68 9e5bf79 e9a0f68 9e5bf79 |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
body {
margin: 0;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
height: 100vh;
width: 100%;
}
.top-bar {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
}
.main {
display: flex;
flex: 1;
}
.side-bar {
width: 100px;
background-color: #444;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 20px;
}
.side-bar button {
background-color: #666;
color: white;
border: none;
margin: 10px 0;
padding: 10px;
cursor: pointer;
text-align: center;
}
.nav-buttons {
margin-top: auto;
}
.content {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #eee;
position: relative;
}
#content-area {
width: 80%;
height: 80%;
position: relative;
overflow: hidden;
}
#slide-image {
width: 100%;
height: 100%;
object-fit: cover;
}
#slide-text {
position: absolute;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 20px;
display: none;
width: 100%;
height: 100%;
}
#slide-video {
display: none;
width: 100%;
height: 100%;
}
|