Aggiunge modulo Replay, Garage dev e YouTube a livello società.
Pipeline registrazione/upload con storage S3, archivio web e app, proxy replay per il browser, OAuth YouTube sulla pagina club (Premium Full) e footer legale. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -356,3 +356,171 @@
|
||||
border-radius: 12px;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.live-main .replay-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 20px;
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.live-main a.replay-card {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
color: #eee;
|
||||
background: #14141c;
|
||||
border: 1px solid #2a2a36;
|
||||
border-radius: 14px;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
|
||||
.live-main a.replay-card:hover {
|
||||
border-color: #e53935;
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.live-main .replay-card__media {
|
||||
position: relative;
|
||||
background: #0a0a0e;
|
||||
}
|
||||
|
||||
.live-main .replay-card__thumb {
|
||||
width: 100%;
|
||||
aspect-ratio: 16 / 9;
|
||||
object-fit: cover;
|
||||
background: #111;
|
||||
display: block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.live-main .replay-card__thumb--placeholder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 140px;
|
||||
background: linear-gradient(145deg, #1a1a24 0%, #0d0d12 100%);
|
||||
}
|
||||
|
||||
.live-main .replay-card__placeholder-icon {
|
||||
font-size: 2rem;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.live-main .replay-card__play {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
border-radius: 50%;
|
||||
background: rgba(229, 57, 53, 0.92);
|
||||
color: #fff;
|
||||
font-size: 1.1rem;
|
||||
line-height: 52px;
|
||||
text-align: center;
|
||||
padding-left: 4px;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.live-main .replay-card__duration {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
bottom: 8px;
|
||||
padding: 3px 8px;
|
||||
border-radius: 6px;
|
||||
background: rgba(0, 0, 0, 0.75);
|
||||
color: #fff;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.live-main .replay-card__body {
|
||||
padding: 12px 14px 14px;
|
||||
}
|
||||
|
||||
.live-main .replay-card__title {
|
||||
display: block;
|
||||
font-size: 1rem;
|
||||
margin: 0 0 6px;
|
||||
color: #fff;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.live-main .replay-card__meta {
|
||||
margin: 0;
|
||||
font-size: 0.85rem;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.live-main .replay-card__meta--sub {
|
||||
margin-top: 4px;
|
||||
font-size: 0.8rem;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.live-main .replay-show__header {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.live-main .replay-show__header h1 {
|
||||
margin: 0 0 8px;
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
.live-main .replay-show__meta {
|
||||
margin: 0;
|
||||
color: #999;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.live-main .replay-show__player {
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.live-main .replay-show__player .replay-video {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.live-main .replay-show__details {
|
||||
padding: 16px 18px;
|
||||
}
|
||||
|
||||
.live-main .replay-show__details-line {
|
||||
margin: 0 0 14px;
|
||||
color: #aaa;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.live-main .replay-show__actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.live-main .replay-filter-form {
|
||||
margin: 12px 0 20px;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.live-main .replay-filter-form .input {
|
||||
min-width: 200px;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid #333;
|
||||
border-radius: 10px;
|
||||
background: #14141c;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user