Template:DSTimeline/style.css: Difference between revisions
Template page
More actions
Content deleted Content added
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 25: | Line 25: | ||
color: #bbb; |
color: #bbb; |
||
font-weight: 600; |
font-weight: 600; |
||
animation: textflicker infinite alternate; |
|||
} |
} |
||
| Line 46: | Line 47: | ||
padding-left: 1rem; |
padding-left: 1rem; |
||
flex-shrink: 0; |
flex-shrink: 0; |
||
} |
|||
@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; |
|||
} |
|||
} |
} |
||
Revision as of 11:31, 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;
animation: textflicker infinite alternate;
}
.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: 0.7;
padding-left: 1rem;
flex-shrink: 0;
}
@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;
}
}