349 lines
7.1 KiB
CSS
349 lines
7.1 KiB
CSS
.submit-hero {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
gap: 24px;
|
|
background-color: var(--bg2);
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 40px 36px 32px;
|
|
}
|
|
|
|
.submit-eyebrow {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 0.68rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: var(--rhpz-orange);
|
|
background: rgba(255,115,0,.1);
|
|
border: 1px solid rgba(255,115,0,.3);
|
|
padding: 3px 10px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.submit-hero-title {
|
|
font-size: 1.9rem;
|
|
font-weight: 300;
|
|
color: var(--text);
|
|
margin-bottom: 10px;
|
|
line-height: 1.25;
|
|
}
|
|
|
|
.submit-hero-sub {
|
|
font-size: 0.9rem;
|
|
color: var(--text2);
|
|
max-width: 460px;
|
|
line-height: 1.65;
|
|
}
|
|
|
|
.submit-review-note {
|
|
font-size: 0.8rem;
|
|
color: var(--text2);
|
|
border: 1px solid var(--border);
|
|
background: var(--bg3);
|
|
padding: 14px 18px;
|
|
max-width: 210px;
|
|
line-height: 1.6;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.submit-review-note strong { color: var(--rhpz-orange); }
|
|
|
|
.submit-body { padding: 28px 36px 40px; }
|
|
|
|
.submit-section-label {
|
|
font-size: 0.68rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: var(--text2);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.submit-section-label::after {
|
|
content: '';
|
|
flex: 1;
|
|
height: 1px;
|
|
background: var(--border);
|
|
}
|
|
|
|
.submit-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 10px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.submit-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--bg2);
|
|
border: 1px solid var(--border);
|
|
text-decoration: none;
|
|
transition: border-color .15s, background .1s;
|
|
}
|
|
|
|
.submit-card:hover {
|
|
border-color: var(--card-color);
|
|
background: var(--bg3);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.submit-card-top {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 14px;
|
|
padding: 20px 20px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.submit-card-icon {
|
|
width: 38px;
|
|
height: 38px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--card-bg);
|
|
border: 1px solid var(--card-border);
|
|
color: var(--card-color);
|
|
}
|
|
|
|
.submit-card-title {
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.submit-card-desc {
|
|
font-size: 0.78rem;
|
|
color: var(--text2);
|
|
line-height: 1.55;
|
|
}
|
|
|
|
.submit-card-bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.submit-card-tag {
|
|
font-size: 0.65rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--card-color);
|
|
background: var(--card-bg);
|
|
border: 1px solid var(--card-border);
|
|
padding: 2px 7px;
|
|
}
|
|
|
|
.submit-card-cta {
|
|
font-size: 0.75rem;
|
|
color: var(--text2);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
transition: color .15s;
|
|
}
|
|
|
|
.submit-card:hover .submit-card-cta { color: var(--card-color); }
|
|
|
|
.submit-news-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 10px;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.submit-news-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 14px;
|
|
background: var(--bg2);
|
|
border: 1px solid var(--border);
|
|
padding: 18px 22px;
|
|
text-decoration: none;
|
|
transition: border-color .15s, background .1s;
|
|
}
|
|
|
|
.submit-news-card:hover {
|
|
border-color: var(--success);
|
|
background: var(--bg3);
|
|
}
|
|
|
|
.submit-news-card--disabled { opacity: .5; cursor: not-allowed; }
|
|
.submit-news-card--disabled:hover { border-color: var(--border); background: var(--bg2); }
|
|
|
|
.submit-news-icon {
|
|
width: 38px;
|
|
height: 38px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(129,199,132,.1);
|
|
border: 1px solid rgba(129,199,132,.3);
|
|
color: var(--success);
|
|
}
|
|
|
|
.submit-news-title {
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
color: var(--text);
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.submit-news-desc { font-size: 0.78rem; color: var(--text2); line-height: 1.55; }
|
|
|
|
.submit-news-cta {
|
|
flex-shrink: 0;
|
|
font-size: 0.75rem;
|
|
color: var(--text2);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
transition: color .15s;
|
|
}
|
|
|
|
.submit-news-card:hover .submit-news-cta { color: var(--success); }
|
|
|
|
.submit-news-staff-note {
|
|
background: var(--bg2);
|
|
border: 1px solid var(--border);
|
|
padding: 18px 22px;
|
|
font-size: 0.8rem;
|
|
color: var(--text2);
|
|
line-height: 1.65;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.submit-news-staff-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
font-size: 0.65rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: .6px;
|
|
color: var(--rhpz-orange);
|
|
background: rgba(255,115,0,.1);
|
|
border: 1px solid rgba(255,115,0,.3);
|
|
padding: 2px 8px;
|
|
width: fit-content;
|
|
}
|
|
|
|
.submit-news-staff-note a { color: var(--text2); text-decoration: underline; }
|
|
.submit-news-staff-note a:hover { color: var(--text); }
|
|
|
|
.submit-rules {
|
|
display: flex;
|
|
gap: 0;
|
|
background: var(--bg2);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.submit-rule {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 12px;
|
|
padding: 18px 22px;
|
|
border-right: 1px solid var(--border);
|
|
font-size: 0.8rem;
|
|
color: var(--text2);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.submit-rule:last-child { border-right: none; }
|
|
.submit-rule strong { color: var(--text); }
|
|
|
|
.submit-rule-num {
|
|
width: 22px;
|
|
height: 22px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(255,115,0,.1);
|
|
border: 1px solid rgba(255,115,0,.3);
|
|
color: var(--rhpz-orange);
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.submit-hero { flex-direction: column; align-items: flex-start; }
|
|
.submit-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.submit-rules { flex-direction: column; }
|
|
.submit-rule { border-right: none; border-bottom: 1px solid var(--border); }
|
|
.submit-rule:last-child { border-bottom: none; }
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.submit-hero {
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
padding: 25px 20px;
|
|
}
|
|
|
|
.submit-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 15px;
|
|
}
|
|
|
|
.submit-body {
|
|
padding: 25px 20px;
|
|
}
|
|
|
|
.submit-rules {
|
|
gap: 0;
|
|
}
|
|
|
|
.submit-rule {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.submit-hero, .submit-body {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.submit-grid { grid-template-columns: 1fr; }
|
|
.submit-news-row { grid-template-columns: 1fr; }
|
|
.submit-review-note { max-width: 100%; }
|
|
|
|
.submit-hero {
|
|
gap: 15px;
|
|
padding: 15px;
|
|
}
|
|
|
|
.submit-body {
|
|
padding: 15px;
|
|
}
|
|
|
|
.submit-rule {
|
|
padding: 12px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.submit-hero-title {
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.submit-grid > * {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|