Downloaded theme
This commit is contained in:
363
themes/minimal-black/assets/css/pages/about-alternative.css
Normal file
363
themes/minimal-black/assets/css/pages/about-alternative.css
Normal file
@@ -0,0 +1,363 @@
|
||||
/* ==========================================================================
|
||||
ABOUT ALTERNATIVE PAGE STYLES
|
||||
Alternative about page with sidebar profile card
|
||||
========================================================================== */
|
||||
|
||||
.page-int, .about-alt-page {
|
||||
max-width: 1200px;
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
.about-alt-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.about-alt-layout {
|
||||
grid-template-columns: 320px 1fr;
|
||||
gap: 3rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* Profile Card - Left Sidebar */
|
||||
.about-alt-sidebar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.about-alt-profile-card {
|
||||
background: linear-gradient(
|
||||
135deg,
|
||||
color-mix(in srgb, var(--color-surface) 70%, transparent),
|
||||
color-mix(in srgb, var(--color-surface) 50%, transparent)
|
||||
);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
||||
border-radius: 1.5rem;
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
|
||||
position: sticky;
|
||||
top: 2rem;
|
||||
}
|
||||
|
||||
.about-alt-avatar,
|
||||
.about-alt-avatar-placeholder {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
border-radius: 50%;
|
||||
margin: 0 auto 1.5rem;
|
||||
overflow: hidden;
|
||||
border: 4px solid var(--color-accent);
|
||||
box-shadow: 0 0 0 8px color-mix(in srgb, var(--color-accent) 15%, transparent);
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
|
||||
.about-alt-avatar:hover,
|
||||
.about-alt-avatar-placeholder:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 0 0 12px color-mix(in srgb, var(--color-accent) 20%, transparent);
|
||||
}
|
||||
|
||||
.about-alt-avatar img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.about-alt-avatar-placeholder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(
|
||||
135deg,
|
||||
color-mix(in srgb, var(--color-accent) 30%, transparent),
|
||||
color-mix(in srgb, var(--color-accent) 15%, transparent)
|
||||
);
|
||||
}
|
||||
|
||||
.about-alt-avatar-placeholder i {
|
||||
font-size: 3rem;
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
.about-alt-name {
|
||||
font-size: 1.75rem;
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.about-alt-role {
|
||||
font-size: 0.9rem;
|
||||
color: var(--color-text-muted);
|
||||
line-height: 1.5;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.about-alt-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.85rem;
|
||||
color: var(--color-text-muted);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-meta i {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
/* Stats Grid */
|
||||
.about-alt-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin: 2rem 0;
|
||||
padding: 1.5rem 0;
|
||||
border-top: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
|
||||
border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
|
||||
}
|
||||
|
||||
.about-alt-stat {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.about-alt-stat-value {
|
||||
font-size: 1.75rem;
|
||||
font-weight: 700;
|
||||
color: var(--color-accent);
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.about-alt-stat-label {
|
||||
font-size: 0.7rem;
|
||||
color: var(--color-text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
/* Social Icons */
|
||||
.about-alt-social {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.75rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-social-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 50%;
|
||||
background: color-mix(in srgb, var(--color-bg) 50%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
||||
color: var(--color-text-muted);
|
||||
transition: all 0.2s ease-out;
|
||||
}
|
||||
|
||||
.about-alt-social-icon:hover {
|
||||
background: var(--color-accent);
|
||||
border-color: var(--color-accent);
|
||||
color: white;
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.about-alt-social-icon i {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* Content Area */
|
||||
.about-alt-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.about-alt-section {
|
||||
background: color-mix(in srgb, var(--color-surface) 40%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
||||
border-radius: 1.25rem;
|
||||
padding: 2rem;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.about-alt-section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 2px solid color-mix(in srgb, var(--color-accent) 20%, transparent);
|
||||
}
|
||||
|
||||
.about-alt-section-title i {
|
||||
color: var(--color-accent);
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
/* Experience Cards Grid */
|
||||
.about-alt-experience-grid {
|
||||
display: grid;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-experience-card {
|
||||
background: color-mix(in srgb, var(--color-bg) 40%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
|
||||
border-left: 4px solid var(--color-accent);
|
||||
border-radius: 0.85rem;
|
||||
padding: 1.5rem;
|
||||
transition: all 0.3s ease-out;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.about-alt-experience-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: radial-gradient(
|
||||
circle at center,
|
||||
color-mix(in srgb, var(--color-accent) 10%, transparent),
|
||||
transparent 70%
|
||||
);
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease-out;
|
||||
}
|
||||
|
||||
.about-alt-experience-card:hover {
|
||||
border-left-width: 6px;
|
||||
transform: translateX(6px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
.about-alt-experience-card:hover::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.about-alt-experience-card p:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.about-alt-experience-card p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.about-alt-experience-card strong {
|
||||
font-size: 1.1rem;
|
||||
color: var(--color-text);
|
||||
display: block;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.about-alt-experience-card em {
|
||||
font-size: 0.85rem;
|
||||
color: var(--color-text-muted);
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
/* Skills Badge Cloud */
|
||||
.about-alt-skills {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.about-alt-skill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.5rem 1rem;
|
||||
background: color-mix(in srgb, var(--color-bg) 50%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
||||
border-radius: 999px;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
color: var(--color-text);
|
||||
transition: all 0.2s ease-out;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.about-alt-skill i {
|
||||
font-size: 1.1em;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.about-alt-skill:hover {
|
||||
background: var(--color-accent);
|
||||
border-color: var(--color-accent);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.about-alt-skill:hover i {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 1023px) {
|
||||
.about-alt-profile-card {
|
||||
position: relative;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.about-alt-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.about-alt-profile-card {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-avatar,
|
||||
.about-alt-avatar-placeholder {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.about-alt-name {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-stats {
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.about-alt-stat-value {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-section {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.about-alt-section-title {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.about-alt-experience-card {
|
||||
padding: 1.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==================== */
|
||||
/* TABLE OF CONTENTS */
|
||||
/* ==================== */
|
||||
|
||||
380
themes/minimal-black/assets/css/pages/about.css
Normal file
380
themes/minimal-black/assets/css/pages/about.css
Normal file
@@ -0,0 +1,380 @@
|
||||
/* ==========================================================================
|
||||
ABOUT PAGE STYLES
|
||||
Standard about page with timeline
|
||||
========================================================================== */
|
||||
|
||||
.about-page {
|
||||
max-width: 900px;
|
||||
margin-inline: auto;
|
||||
}
|
||||
|
||||
.about-hero {
|
||||
text-align: center;
|
||||
padding: 3rem 0 4rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.about-hero::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 60px;
|
||||
height: 3px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
transparent,
|
||||
var(--color-accent),
|
||||
transparent
|
||||
);
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
.about-hero-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.about-avatar,
|
||||
.about-avatar-placeholder {
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
border: 3px solid var(--color-accent);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
|
||||
0 0 0 8px color-mix(in srgb, var(--color-accent) 15%, transparent);
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
|
||||
.about-avatar:hover,
|
||||
.about-avatar-placeholder:hover {
|
||||
transform: translateY(-4px) scale(1.02);
|
||||
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3),
|
||||
0 0 0 12px color-mix(in srgb, var(--color-accent) 20%, transparent);
|
||||
}
|
||||
|
||||
.about-avatar img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.about-avatar-placeholder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(
|
||||
135deg,
|
||||
color-mix(in srgb, var(--color-accent) 20%, transparent),
|
||||
color-mix(in srgb, var(--color-accent) 10%, transparent)
|
||||
);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
|
||||
.about-avatar-placeholder i {
|
||||
font-size: 4rem;
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
.about-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
color: var(--color-text);
|
||||
margin: 0;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.about-subtitle {
|
||||
font-size: 1.1rem;
|
||||
color: var(--color-text-muted);
|
||||
max-width: 600px;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.about-content {
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
.about-content .card {
|
||||
background: color-mix(in srgb, var(--color-surface) 60%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.about-content .markdown-body h3 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
margin-top: 2.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 2px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
|
||||
}
|
||||
|
||||
.about-content .markdown-body h3::before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 4px;
|
||||
height: 1.5rem;
|
||||
background: var(--color-accent);
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
/* Timeline */
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding: 2rem 0 1rem 0;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.timeline::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 20px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background: linear-gradient(
|
||||
to bottom,
|
||||
transparent,
|
||||
var(--color-accent) 10%,
|
||||
var(--color-accent) 90%,
|
||||
transparent
|
||||
);
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
padding-left: 60px;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.timeline-item:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.timeline-marker {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 8px;
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.timeline-marker::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: var(--color-accent);
|
||||
border-radius: 50%;
|
||||
border: 3px solid var(--color-bg);
|
||||
box-shadow:
|
||||
0 0 0 4px color-mix(in srgb, var(--color-accent) 20%, transparent),
|
||||
0 4px 12px rgba(0, 0, 0, 0.3);
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
|
||||
.timeline-item:hover .timeline-marker::before {
|
||||
transform: scale(1.3);
|
||||
box-shadow:
|
||||
0 0 0 6px color-mix(in srgb, var(--color-accent) 30%, transparent),
|
||||
0 6px 16px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
background: color-mix(in srgb, var(--color-surface) 30%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
|
||||
border-radius: 0.85rem;
|
||||
padding: 1.5rem;
|
||||
transition: all 0.3s ease-out;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.timeline-content::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 4px;
|
||||
background: var(--color-accent);
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease-out;
|
||||
}
|
||||
|
||||
.timeline-item:hover .timeline-content {
|
||||
background: color-mix(in srgb, var(--color-surface) 50%, transparent);
|
||||
border-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
|
||||
transform: translateX(4px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.timeline-item:hover .timeline-content::before {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.timeline-content > p:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.timeline-content > p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.timeline-content strong {
|
||||
font-size: 1.1rem;
|
||||
color: var(--color-text);
|
||||
display: block;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.timeline-content em {
|
||||
font-size: 0.85rem;
|
||||
color: var(--color-text-muted);
|
||||
font-style: normal;
|
||||
display: block;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.timeline-content a {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
/* Remove hr from timeline */
|
||||
.timeline hr {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.about-social {
|
||||
text-align: center;
|
||||
padding: 3rem 2rem;
|
||||
background: color-mix(in srgb, var(--color-surface) 40%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
||||
border-radius: 1.25rem;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.about-social-title {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 650;
|
||||
color: var(--color-text);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.about-social-links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.about-social-link {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 999px;
|
||||
background: color-mix(in srgb, var(--color-bg) 60%, transparent);
|
||||
border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
|
||||
color: var(--color-text-muted);
|
||||
text-decoration: none;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 500;
|
||||
transition: all 0.2s ease-out;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
.about-social-link:hover {
|
||||
transform: translateY(-2px);
|
||||
background: color-mix(in srgb, var(--color-surface) 80%, transparent);
|
||||
border-color: var(--color-accent);
|
||||
color: var(--color-accent);
|
||||
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.about-social-link i {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
/* Responsive about page */
|
||||
@media (max-width: 640px) {
|
||||
.about-hero {
|
||||
padding: 2rem 0 3rem;
|
||||
}
|
||||
|
||||
.about-avatar,
|
||||
.about-avatar-placeholder {
|
||||
width: 110px;
|
||||
height: 110px;
|
||||
}
|
||||
|
||||
.about-avatar-placeholder i {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.about-title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.about-subtitle {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.about-social {
|
||||
padding: 2rem 1.25rem;
|
||||
}
|
||||
|
||||
.about-social-links {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.about-social-link {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Timeline responsive */
|
||||
.timeline::before {
|
||||
left: 12px;
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
padding-left: 40px;
|
||||
}
|
||||
|
||||
.timeline-marker {
|
||||
left: -5px;
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.timeline-marker::before {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.timeline-content {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.timeline-content strong {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.timeline-content em {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user