Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Template:DSTimeline/style.css: Difference between revisions

Template page
Content deleted Content added
MMONTAGEe (talk | contribs)
No edit summary
MMONTAGEe (talk | contribs)
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 3: Line 3:
justify-content: space-between;
justify-content: space-between;
align-items: center;
align-items: center;
width: 100%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.12);
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
padding: 0.25rem 1rem;
border-radius: 12px;
font-family: 'Inter', sans-serif;
padding: 1rem;
color: #eee;
font-size: 0.8rem;
color: #e0e0e0;
margin-bottom: 1rem;
backdrop-filter: blur(4px);
animation: fadeIn 0.6s ease-out;
backdrop-filter: blur(8px);
margin-bottom: 1.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
gap: 1rem;
}
}


.timeline-content {
.timeline-content {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.1rem;
}
}


.timeline-header {
.timeline-header {
font-size: 1.75rem;
font-size: 1.45rem;
letter-spacing: 0.15em;
letter-spacing: 0.15em;
text-transform: uppercase;
text-transform: uppercase;
color: #ccc;
color: #bbb;
margin-bottom: 0.4rem;
font-weight: 600;
font-weight: 600;
}
}

.text-flicker {
animation: textflicker 0.012s infinite alternate;
text-shadow:
0.06rem 0 0.06rem #ea36af,
-0.125rem 0 0.06rem #75fa69;
letter-spacing: 0.125em;
}



.timeline-body {
.timeline-body {
font-size: 0.95rem;
font-size: 1.1rem;
line-height: 1.5;
line-height: 1.4;
color: #eee;
text-transform: uppercase;
}
}


.timeline-century {
.timeline-century {
font-weight: bold;
color: #000;
color: #000;
background: linear-gradient(to right, #ccc, #fff);
font-weight: 700;
border: 3px;
background: linear-gradient(to right, #aaa, #fff);
border-radius: 3px;
}
}


.timeline-icon {
.timeline-icon {
font-size: 1.4rem;
font-size: 1.1rem;
opacity: 0.85;
opacity: 1.0;
padding-left: 1rem;
flex-shrink: 0;
flex-shrink: 0;
}

.text-glow {
text-shadow:
0 0 0.2rem rgba(234, 54, 175, 0.4),
0 0 0.6rem rgba(117, 250, 105, 0.2);
}


@keyframes textflicker {
from {
text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
}
to {
text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
}
}
}

Latest revision as of 11:47, May 3, 2025

.timeline-hatnote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.25rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #e0e0e0;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.timeline-header {
  font-size: 1.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
}

.text-flicker {
  animation: textflicker 0.012s infinite alternate;
  text-shadow:
    0.06rem 0 0.06rem #ea36af,
    -0.125rem 0 0.06rem #75fa69;
  letter-spacing: 0.125em;
}


.timeline-body {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #eee;
  text-transform: uppercase;
}

.timeline-century {
  font-weight: bold;
  color: #000;
  background: linear-gradient(to right, #ccc, #fff);
  border: 3px;
}

.timeline-icon {
  font-size: 1.1rem;
  opacity: 1.0;
  padding-left: 1rem;
  flex-shrink: 0;
}

.text-glow {
  text-shadow:
    0 0 0.2rem rgba(234, 54, 175, 0.4),
    0 0 0.6rem rgba(117, 250, 105, 0.2);
}


@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
  }
  to {
    text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
  }
}