147 lines
2.4 KiB
CSS
147 lines
2.4 KiB
CSS
:root {
|
|
--background-dark: #121212;
|
|
--surface-dark: #1E1E1E;
|
|
--primary-accent: #D83F87; /* Rose Red */
|
|
--text-primary: #FFFFFF;
|
|
--text-secondary: #AAAAAA;
|
|
--border-color: #383838;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background-dark);
|
|
color: var(--text-primary);
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
.video-container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 24px;
|
|
}
|
|
|
|
.video-player {
|
|
background-color: #000000;
|
|
width: 100%;
|
|
height: 0;
|
|
padding-bottom: 56.25%; /* 16:9 aspect ratio */
|
|
position: relative;
|
|
border-radius: 8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.video-player-placeholder {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.video-title {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.video-stats {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.video-stats span {
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.action-buttons .btn {
|
|
margin-right: 8px;
|
|
background-color: #282828;
|
|
border: none;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.action-buttons .btn:hover {
|
|
background-color: var(--primary-accent);
|
|
}
|
|
|
|
.channel-info {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px 0;
|
|
border-top: 1px solid var(--border-color);
|
|
border-bottom: 1px solid var(--border-color);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.channel-info img {
|
|
border-radius: 50%;
|
|
width: 48px;
|
|
height: 48px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.channel-name {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.channel-subs {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.subscribe-btn {
|
|
background-color: var(--primary-accent);
|
|
color: var(--text-primary);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.description-box {
|
|
background-color: var(--surface-dark);
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
margin-bottom: 24px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.description-content {
|
|
display: none;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.comments-section h3 {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.comment {
|
|
display: flex;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.comment img {
|
|
border-radius: 50%;
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.comment-body {
|
|
flex: 1;
|
|
}
|
|
|
|
.comment-author {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.comment-text {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.comment-actions {
|
|
color: var(--text-secondary);
|
|
font-size: 12px;
|
|
} |