A lot of things
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
@import './layout/content.css';
|
||||
@import './layout/entry.css';
|
||||
@import './layout/news.css';
|
||||
@import './layout/activity.css';
|
||||
@import './layout/submit.css';
|
||||
|
||||
@import './components/common.css';
|
||||
@import './components/grid.css';
|
||||
|
||||
@@ -349,6 +349,50 @@
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
}
|
||||
.gallery-item {
|
||||
position: relative;
|
||||
cursor: grab;
|
||||
transition: opacity 0.2s, transform 0.15s;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.gallery-item:active { cursor: grabbing; }
|
||||
|
||||
.gallery-item--dragging {
|
||||
opacity: 0.4;
|
||||
transform: scale(0.97);
|
||||
}
|
||||
|
||||
.gallery-drag-handle {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 4px;
|
||||
z-index: 10;
|
||||
background-color: rgba(0,0,0,0.6);
|
||||
color: #fff;
|
||||
padding: 3px 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: grab;
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s;
|
||||
}
|
||||
|
||||
.gallery-item:hover .gallery-drag-handle { opacity: 1; }
|
||||
|
||||
.gallery-order-badge {
|
||||
position: absolute;
|
||||
bottom: 4px;
|
||||
left: 4px;
|
||||
z-index: 10;
|
||||
background-color: rgba(0,0,0,0.7);
|
||||
color: #fff;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
padding: 2px 6px;
|
||||
min-width: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.authors-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
|
||||
@@ -48,6 +48,6 @@
|
||||
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
.modal-content, .modal-body {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
@@ -318,3 +318,232 @@
|
||||
|
||||
.modcp-list-item-edit--game .form-input { min-width: 180px; flex: 2; }
|
||||
.modcp-list-item-edit--game .form-select { flex: 1; min-width: 120px; }
|
||||
|
||||
.log-filters {
|
||||
margin-bottom: 16px;
|
||||
background-color: var(--bg3);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.log-filters-main {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 12px 14px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.log-search-wrap {
|
||||
flex: 1;
|
||||
min-width: 200px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.log-search-wrap i {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
color: var(--text2);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.log-search-wrap .form-input { padding-left: 30px; }
|
||||
|
||||
.log-select { min-width: 130px; }
|
||||
|
||||
.log-filter-dot {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 50%;
|
||||
background-color: var(--rhpz-orange);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.log-filters-extra {
|
||||
border-top: 1px solid var(--border);
|
||||
padding: 12px 14px;
|
||||
}
|
||||
|
||||
.log-filters-extra-inner {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.log-filter-field {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.log-filter-label {
|
||||
font-size: 0.7rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.6px;
|
||||
color: var(--text2);
|
||||
}
|
||||
|
||||
.log-transition-enter { transition: all .15s ease; }
|
||||
.log-transition-leave { transition: all .1s ease; }
|
||||
|
||||
.log-results-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 0.78rem;
|
||||
color: var(--text2);
|
||||
margin-bottom: 10px;
|
||||
padding: 0 2px;
|
||||
}
|
||||
|
||||
.log-loading { opacity: 0.5; }
|
||||
|
||||
.log-item { align-items: flex-start; padding: 11px 14px; }
|
||||
.log-item--open { background-color: var(--bg3); }
|
||||
|
||||
.log-event-dot {
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
flex-shrink: 0;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 2px;
|
||||
border: 1px solid var(--border);
|
||||
background-color: var(--bg3);
|
||||
color: var(--text2);
|
||||
}
|
||||
|
||||
.log-event-dot--created {
|
||||
background-color: rgba(129,199,132,.1);
|
||||
border-color: rgba(129,199,132,.35);
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
.log-event-dot--updated {
|
||||
background-color: rgba(255,115,0,.1);
|
||||
border-color: rgba(255,115,0,.35);
|
||||
color: var(--rhpz-orange);
|
||||
}
|
||||
|
||||
.log-event-dot--deleted {
|
||||
background-color: rgba(229,115,115,.1);
|
||||
border-color: rgba(229,115,115,.35);
|
||||
color: var(--error);
|
||||
}
|
||||
|
||||
.log-channel-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
padding: 1px 6px;
|
||||
background-color: rgba(255,255,255,.05);
|
||||
border: 1px solid var(--border);
|
||||
color: var(--text2);
|
||||
}
|
||||
|
||||
.log-id { color: var(--text2); font-size: 0.78rem; }
|
||||
.log-sep { color: var(--border); }
|
||||
|
||||
.log-item-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex-shrink: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.log-timestamp {
|
||||
font-size: 0.75rem;
|
||||
color: var(--text2);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.log-expand-btn { padding: 4px 7px; }
|
||||
|
||||
.log-properties {
|
||||
background-color: var(--bg);
|
||||
border-bottom: 1px solid var(--border);
|
||||
padding: 14px 14px 14px 54px;
|
||||
}
|
||||
|
||||
.log-diff-label {
|
||||
font-size: 0.68rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.7px;
|
||||
color: var(--text2);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.log-diff {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.log-diff th {
|
||||
text-align: left;
|
||||
padding: 5px 10px;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--text2);
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.log-diff td {
|
||||
padding: 5px 10px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
vertical-align: top;
|
||||
max-width: 300px;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.log-diff tr:last-child td { border-bottom: none; }
|
||||
|
||||
.log-diff-key {
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
width: 160px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.log-diff-old-head { color: var(--error) !important; }
|
||||
.log-diff-new-head { color: var(--success) !important; }
|
||||
|
||||
.log-diff-old {
|
||||
color: var(--error);
|
||||
background-color: rgba(229,115,115,.05);
|
||||
}
|
||||
|
||||
.log-diff-new {
|
||||
color: var(--success);
|
||||
background-color: rgba(129,199,132,.05);
|
||||
}
|
||||
|
||||
.log-raw {
|
||||
font-family: monospace;
|
||||
font-size: 0.78rem;
|
||||
color: var(--text2);
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
padding: 10px 12px;
|
||||
overflow-x: auto;
|
||||
white-space: pre-wrap;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.log-pagination {
|
||||
padding: 14px 0 4px;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
485
resources/css/layout/activity.css
Normal file
485
resources/css/layout/activity.css
Normal file
@@ -0,0 +1,485 @@
|
||||
|
||||
.activity-hero-excerpt {
|
||||
font-size: 0.9rem;
|
||||
color: rgba(255,255,255,0.75);
|
||||
margin-bottom: 12px;
|
||||
line-height: 1.5;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
.activity-tl-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
gap: 15px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.activity-tl-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-size: 1.15rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.activity-tl-filters {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.activity-tl-filter {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
padding: 5px 12px;
|
||||
background: none;
|
||||
border: 1px solid var(--border);
|
||||
color: var(--text2);
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
font-family: var(--typography);
|
||||
transition: all 0.1s;
|
||||
}
|
||||
|
||||
.activity-tl-filter:hover { background-color: var(--bg3); color: var(--text); }
|
||||
.activity-tl-filter.active {
|
||||
background-color: var(--bg3);
|
||||
border-color: var(--rhpz-orange);
|
||||
color: var(--rhpz-orange);
|
||||
}
|
||||
|
||||
.activity-day-sep {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding-left: 54px;
|
||||
margin: 20px 0 12px;
|
||||
}
|
||||
|
||||
.activity-day-label {
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
color: var(--text2);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.8px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.activity-day-line {
|
||||
flex: 1;
|
||||
height: 1px;
|
||||
background-color: var(--border);
|
||||
}
|
||||
|
||||
.activity-tl-item {
|
||||
display: flex;
|
||||
gap: 0;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.activity-tl-left {
|
||||
width: 54px;
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding-top: 12px;
|
||||
}
|
||||
|
||||
.activity-tl-dot {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
border: 1px solid var(--border);
|
||||
background-color: var(--bg2);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.activity-tl-dot--entry {
|
||||
background-color: rgba(255,115,0,0.1);
|
||||
border-color: rgba(255,115,0,0.4);
|
||||
color: var(--rhpz-orange);
|
||||
}
|
||||
|
||||
.activity-tl-dot--news {
|
||||
background-color: rgba(129,199,132,0.1);
|
||||
border-color: rgba(129,199,132,0.4);
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
.activity-tl-dot--message, .activity-tl-dot--thread, .activity-tl-dot--club {
|
||||
background-color: rgba(25,118,210,0.1);
|
||||
border-color: rgba(25,118,210,0.4);
|
||||
color: var(--info);
|
||||
}
|
||||
|
||||
.activity-tl-line {
|
||||
width: 1px;
|
||||
flex: 1;
|
||||
background-color: var(--border);
|
||||
margin-top: 4px;
|
||||
min-height: 16px;
|
||||
}
|
||||
|
||||
.activity-tl-item:last-of-type .activity-tl-line { display: none; }
|
||||
|
||||
.activity-tl-card {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
padding: 10px 14px;
|
||||
margin-bottom: 8px;
|
||||
text-decoration: none;
|
||||
transition: border-color 0.15s, background-color 0.1s;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.activity-tl-card:hover {
|
||||
border-color: var(--rhpz-orange);
|
||||
background-color: var(--bg3);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.activity-tl-thumb {
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: var(--bg3);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.activity-tl-thumb img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.activity-tl-body {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.activity-tl-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.6px;
|
||||
padding: 2px 7px;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.activity-tl-badge--entry {
|
||||
background-color: rgba(255,115,0,0.1);
|
||||
color: var(--rhpz-orange);
|
||||
border: 1px solid rgba(255,115,0,0.25);
|
||||
}
|
||||
|
||||
.activity-tl-badge--news {
|
||||
background-color: rgba(129,199,132,0.1);
|
||||
color: var(--success);
|
||||
border: 1px solid rgba(129,199,132,0.25);
|
||||
}
|
||||
|
||||
.activity-tl-badge--message, .activity-tl-badge--thread, .activity-tl-dot--club {
|
||||
background-color: rgba(25,118,210,0.1);
|
||||
color: var(--info);
|
||||
border: 1px solid rgba(25,118,210,0.25);
|
||||
}
|
||||
|
||||
.activity-tl-card-title {
|
||||
font-size: 0.92rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.activity-tl-card-description {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text2);
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.activity-tl-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-size: 0.75rem;
|
||||
color: var(--text2);
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.activity-tl-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.activity-tl-time {
|
||||
font-size: 0.72rem;
|
||||
color: var(--text2);
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.activity-tl-empty {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 60px;
|
||||
color: var(--text2);
|
||||
text-align: center;
|
||||
padding-left: 54px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.activity-tl-header { flex-direction: column; align-items: flex-start; }
|
||||
.activity-tl-thumb { display: none; }
|
||||
.activity-day-sep { padding-left: 44px; }
|
||||
.activity-tl-left { width: 44px; }
|
||||
}
|
||||
|
||||
.home-section {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.home-section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 12px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.home-section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-size: 1.05rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.home-section-more {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
font-size: 0.75rem;
|
||||
color: var(--text2);
|
||||
border: 1px solid var(--border);
|
||||
padding: 4px 10px;
|
||||
text-decoration: none;
|
||||
transition: color 0.1s, border-color 0.1s;
|
||||
}
|
||||
|
||||
.home-section-more:hover {
|
||||
color: var(--rhpz-orange);
|
||||
border-color: var(--rhpz-orange);
|
||||
}
|
||||
|
||||
.news-strip {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.news-strip-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
text-decoration: none;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.15s;
|
||||
}
|
||||
|
||||
.news-strip-card:hover { border-color: var(--rhpz-orange); text-decoration: none; }
|
||||
|
||||
.news-strip-cover {
|
||||
height: 110px;
|
||||
background-color: var(--bg3);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.news-strip-date {
|
||||
position: absolute;
|
||||
bottom: 6px;
|
||||
left: 8px;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
color: rgba(255,255,255,0.8);
|
||||
background: rgba(0,0,0,0.55);
|
||||
padding: 2px 6px;
|
||||
border: 1px solid rgba(255,255,255,0.07);
|
||||
}
|
||||
|
||||
.news-strip-body {
|
||||
padding: 10px 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.news-strip-badge {
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--success);
|
||||
background: rgba(129,199,132,0.1);
|
||||
border: 1px solid rgba(129,199,132,0.25);
|
||||
padding: 1px 6px;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.news-strip-title {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
line-height: 1.35;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.news-strip-meta {
|
||||
font-size: 0.72rem;
|
||||
color: var(--text2);
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.featured-entries-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.featured-entry-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
text-decoration: none;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.15s;
|
||||
}
|
||||
|
||||
.featured-entry-card:hover { border-color: var(--rhpz-orange); text-decoration: none; }
|
||||
|
||||
.featured-entry-cover {
|
||||
height: 80px;
|
||||
background-color: var(--bg3);
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.featured-entry-cover img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
.featured-entry-star {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 6px;
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
background: rgba(255,115,0,0.9);
|
||||
color: #111;
|
||||
padding: 2px 6px;
|
||||
border: 1px solid rgba(255,115,0,0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 3px;
|
||||
}
|
||||
|
||||
.featured-entry-body {
|
||||
padding: 10px 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.featured-entry-platform {
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--rhpz-orange);
|
||||
background: rgba(255,115,0,0.1);
|
||||
border: 1px solid rgba(255,115,0,0.25);
|
||||
padding: 1px 6px;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.featured-entry-title {
|
||||
font-size: 0.88rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.featured-entry-meta {
|
||||
font-size: 0.72rem;
|
||||
color: var(--text2);
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.news-strip { grid-template-columns: repeat(3, 1fr); }
|
||||
.featured-entries-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.news-strip { grid-template-columns: repeat(2, 1fr); }
|
||||
.featured-entries-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.news-strip-cover { height: 80px; }
|
||||
}
|
||||
@@ -9,12 +9,18 @@
|
||||
z-index: 100;
|
||||
|
||||
.menu-header {
|
||||
padding: 20px;
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.menu-logo {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
|
||||
@@ -46,3 +46,441 @@
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
#news-container {
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.news-header {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
padding: 40px 30px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.news-header-content {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.news-header .news-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
margin-bottom: 12px;
|
||||
text-shadow: 0 2px 4px rgba(0,0,0,0.6);
|
||||
}
|
||||
|
||||
.news-header .news-meta {
|
||||
color: var(--text2);
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
font-size: 0.9rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.news-header .meta-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
padding: 4px 10px;
|
||||
border-radius: 2px;
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
}
|
||||
|
||||
.news-layout {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 30px;
|
||||
padding: 30px;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.news-layout {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.news-main-content {
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.news-body-text {
|
||||
line-height: 1.75;
|
||||
color: var(--text);
|
||||
font-size: 1.05rem;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.news-body-text p {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.news-sidebar {
|
||||
width: 320px;
|
||||
flex-shrink: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.news-sidebar {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar-block {
|
||||
background-color: var(--bg);
|
||||
border: 1px solid var(--border);
|
||||
padding: 20px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.sidebar-title {
|
||||
font-size: 1rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--text);
|
||||
margin-bottom: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.btn-sidebar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
width: 100%;
|
||||
padding: 10px 15px;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 500;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
border-radius: 2px;
|
||||
transition: background-color 0.2s ease, border-color 0.2s ease;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.btn-orange {
|
||||
background-color: var(--rhpz-orange);
|
||||
color: #fff;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.btn-orange:hover {
|
||||
background-color: var(--rhpz-orange-hover);
|
||||
}
|
||||
|
||||
.related-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.related-card-cover {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
overflow: hidden;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.related-card-cover img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.related-card-info h4 {
|
||||
font-size: 1.1rem;
|
||||
color: var(--text);
|
||||
margin-bottom: 10px;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.news-sidebar .video-thumbnail-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 16/9;
|
||||
background-color: #000;
|
||||
border: 1px solid var(--border);
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.news-sidebar .video-thumbnail-wrapper img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
opacity: 0.7;
|
||||
transition: transform 0.3s ease, opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.news-sidebar .video-thumbnail-wrapper:hover img {
|
||||
transform: scale(1.03);
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.news-sidebar .play-trigger {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background-color: rgba(0, 0, 0, 0.75);
|
||||
border: 2px solid #fff;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #fff;
|
||||
transition: background-color 0.2s, transform 0.2s ease-out;
|
||||
}
|
||||
|
||||
.news-sidebar .video-thumbnail-wrapper:hover .play-trigger {
|
||||
background-color: var(--rhpz-orange);
|
||||
transform: translate(-50%, -50%) scale(1.1);
|
||||
}
|
||||
|
||||
.news-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin-top: 15px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.news-header .news-actions .btn {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
border-color: rgba(255, 255, 255, 0.15);
|
||||
backdrop-filter: blur(4px);
|
||||
color: var(--text);
|
||||
transition: background-color 0.15s, border-color 0.15s;
|
||||
}
|
||||
|
||||
.news-header .news-actions .btn:hover {
|
||||
background-color: rgba(0, 0, 0, 0.7);
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
}
|
||||
|
||||
.news-header .news-actions .btn.success {
|
||||
background-color: rgba(56, 142, 60, 0.6);
|
||||
border-color: rgba(129, 199, 132, 0.4);
|
||||
color: #81c784;
|
||||
}
|
||||
|
||||
.news-header .news-actions .btn.danger {
|
||||
background-color: rgba(183, 28, 28, 0.5);
|
||||
border-color: rgba(229, 115, 115, 0.4);
|
||||
color: #e57373;
|
||||
}
|
||||
|
||||
/* ── Hero ────────────────────────────────────────────────── */
|
||||
.news-hero {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 360px;
|
||||
margin-bottom: 20px;
|
||||
border: 1px solid var(--border);
|
||||
overflow: hidden;
|
||||
text-decoration: none;
|
||||
transition: border-color 0.2s;
|
||||
}
|
||||
|
||||
.news-hero:hover {
|
||||
border-color: var(--rhpz-orange);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.news-hero-bg {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-color: var(--bg3);
|
||||
transition: transform 0.4s ease;
|
||||
}
|
||||
|
||||
.news-hero:hover .news-hero-bg {
|
||||
transform: scale(1.02);
|
||||
}
|
||||
|
||||
.news-hero-content {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: 30px;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.news-hero-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
background-color: var(--rhpz-orange);
|
||||
color: #111;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.8px;
|
||||
padding: 4px 10px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.news-hero-title {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
margin-bottom: 12px;
|
||||
text-shadow: 0 2px 8px rgba(0,0,0,0.5);
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.news-hero-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
font-size: 0.85rem;
|
||||
color: rgba(255,255,255,0.75);
|
||||
}
|
||||
|
||||
.news-hero-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
padding: 3px 10px;
|
||||
border: 1px solid rgba(255,255,255,0.08);
|
||||
}
|
||||
|
||||
.news-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 15px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.news-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
text-decoration: none;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.15s, transform 0.15s;
|
||||
}
|
||||
|
||||
.news-card:hover {
|
||||
border-color: var(--rhpz-orange);
|
||||
transform: translateY(-2px);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.news-card-cover {
|
||||
height: 160px;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-color: var(--bg3);
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.news-card:hover .news-card-cover {
|
||||
transform: scale(1.03);
|
||||
}
|
||||
|
||||
.news-card-state-badge {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
background-color: rgba(0,0,0,0.7);
|
||||
color: var(--rhpz-orange);
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
padding: 3px 8px;
|
||||
border: 1px solid rgba(255,115,0,0.3);
|
||||
}
|
||||
|
||||
.news-card-body {
|
||||
padding: 16px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.news-card-title {
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
line-height: 1.3;
|
||||
margin: 0;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.news-card-excerpt {
|
||||
font-size: 0.82rem;
|
||||
color: var(--text2);
|
||||
line-height: 1.5;
|
||||
margin: 0;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.news-card-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
font-size: 0.75rem;
|
||||
color: var(--text2);
|
||||
margin-top: auto;
|
||||
padding-top: 8px;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.news-card-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.news-hero { height: 240px; }
|
||||
.news-hero-title { font-size: 1.4rem; }
|
||||
.news-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
297
resources/css/layout/submit.css
Normal file
297
resources/css/layout/submit.css
Normal file
@@ -0,0 +1,297 @@
|
||||
.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: 600px) {
|
||||
.submit-hero, .submit-body { padding-left: 20px; padding-right: 20px; }
|
||||
.submit-grid { grid-template-columns: 1fr; }
|
||||
.submit-news-row { grid-template-columns: 1fr; }
|
||||
.submit-review-note { max-width: 100%; }
|
||||
}
|
||||
Reference in New Issue
Block a user