54 lines
936 B
CSS
54 lines
936 B
CSS
.watch-page {
|
|
display: flex;
|
|
background-color: var(--fb-bg);
|
|
min-height: calc(100vh - 56px);
|
|
}
|
|
|
|
.watch-sidebar {
|
|
width: 360px;
|
|
background-color: var(--fb-card-bg);
|
|
padding: 16px;
|
|
box-shadow: 2px 0 5px rgba(0,0,0,0.05);
|
|
position: sticky;
|
|
top: 56px;
|
|
height: calc(100vh - 56px);
|
|
}
|
|
|
|
.watch-content {
|
|
flex: 1;
|
|
padding: 24px 32px;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.video-post-card {
|
|
background-color: var(--fb-card-bg);
|
|
border-radius: var(--fb-radius);
|
|
padding: 12px 0;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.video-content {
|
|
padding: 4px 16px 12px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.video-placeholder {
|
|
background-color: black;
|
|
height: 450px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
}
|
|
|
|
.play-icon-large {
|
|
background: rgba(0,0,0,0.4);
|
|
padding: 20px;
|
|
border-radius: 50%;
|
|
border: 2px solid white;
|
|
}
|