36439-vm/assets/css/custom.css
2025-11-28 18:47:44 +00:00

140 lines
2.0 KiB
CSS

body {
background-color: #121212;
color: #FFFFFF;
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: #AAAAAA;
margin-bottom: 16px;
}
.video-stats span {
margin-right: 16px;
}
.action-buttons .btn {
margin-right: 8px;
background-color: #282828;
border: none;
color: #FFFFFF;
}
.action-buttons .btn:hover {
background-color: #383838;
}
.channel-info {
display: flex;
align-items: center;
padding: 16px 0;
border-top: 1px solid #383838;
border-bottom: 1px solid #383838;
margin-bottom: 16px;
}
.channel-info img {
border-radius: 50%;
width: 48px;
height: 48px;
margin-right: 12px;
}
.channel-name {
font-weight: 700;
}
.channel-subs {
color: #AAAAAA;
}
.subscribe-btn {
background-color: #E50914;
color: #FFFFFF;
font-weight: 700;
}
.description-box {
background-color: #1E1E1E;
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: #AAAAAA;
font-size: 12px;
}