556 lines
11 KiB
CSS
556 lines
11 KiB
CSS
|
|
.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, .activity-tl-dot--review {
|
|
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, .activity-tl-badge--review {
|
|
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; }
|
|
|
|
.activity-tl-date {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.activity-tl-content-title {
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.activity-timeline {
|
|
padding-left: 50px;
|
|
}
|
|
|
|
.activity-tl-left {
|
|
width: 40px;
|
|
}
|
|
|
|
.activity-tl-header {
|
|
gap: 10px;
|
|
}
|
|
|
|
.activity-tl-date {
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
.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: 768px) {
|
|
.news-strip {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 15px;
|
|
}
|
|
|
|
.featured-entries-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 15px;
|
|
}
|
|
|
|
.home-section {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.news-strip-cover {
|
|
height: 100px;
|
|
}
|
|
|
|
.featured-entry-title {
|
|
font-size: 0.95rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.news-strip { grid-template-columns: 1fr; }
|
|
.featured-entries-grid { grid-template-columns: 1fr; }
|
|
.news-strip-cover { height: 80px; }
|
|
|
|
.news-strip-item {
|
|
padding: 10px;
|
|
}
|
|
|
|
.news-strip-title {
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.featured-entry-title {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.featured-entry-meta {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.home-section-title {
|
|
font-size: 0.95rem;
|
|
}
|
|
}
|