Template:OMGSISA/styles.css: Difference between revisions
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
SomebodyRum (talk | contribs) mNo edit summary |
SomebodyRum (talk | contribs) mNo edit summary |
||
| Line 8: | Line 8: | ||
position: relative; | position: relative; | ||
overflow: hidden; | overflow: hidden; | ||
background-color: # | /* Swapped magenta/pink for a soft valentine red */ | ||
background: radial-gradient(circle, # | background-color: #ff8585; | ||
border: 3px solid # | background: radial-gradient(circle, #ff9999 0%, #ff6b6b 100%); | ||
border: 3px solid #cc3333; | |||
border-radius: 10px; | border-radius: 10px; | ||
box-shadow: inset 0 0 10px rgba( | box-shadow: inset 0 0 10px rgba(204, 51, 51, 0.6), 0 4px 6px rgba(0,0,0,0.1); | ||
padding: 10px 20px; | padding: 10px 20px; | ||
z-index: 1; | z-index: 1; | ||
} | } | ||
/* Background Layers - | /* Background Layers - Larger, softer, sliding only */ | ||
.omgsisa-bg | .omgsisa-bg { | ||
position: absolute; | position: absolute; | ||
top: -50%; left: -50%; | top: -50%; left: -50%; | ||
width: 200%; height: 200%; | width: 200%; height: 200%; | ||
opacity: 0. | font-size: 55px; /* Larger so it's not disorienting */ | ||
line-height: 1.15; | |||
letter-spacing: -2px; | |||
word-wrap: break-word; | |||
opacity: 0.15; /* Subtler opacity */ | |||
z-index: 0; | z-index: 0; | ||
animation: bg-slide | animation: bg-slide 20s linear infinite; /* Slower, smoother slide */ | ||
} | } | ||
| Line 38: | Line 35: | ||
0% { transform: translate(0, 0); } | 0% { transform: translate(0, 0); } | ||
100% { transform: translate(15%, 15%); } | 100% { transform: translate(15%, 15%); } | ||
} | } | ||
| Line 55: | Line 45: | ||
align-items: center; | align-items: center; | ||
justify-content: center; | justify-content: center; | ||
gap: 20px; | gap: 20px; | ||
} | } | ||
| Line 71: | Line 61: | ||
font-weight: bold; | font-weight: bold; | ||
color: white; | color: white; | ||
/* Deep soft red stroke */ | |||
text-shadow: | text-shadow: | ||
-2px -2px 0 # | -2px -2px 0 #cc3333, 2px -2px 0 #cc3333, | ||
-2px 2px 0 # | -2px 2px 0 #cc3333, 2px 2px 0 #cc3333, | ||
0px 4px 6px rgba( | 0px 4px 6px rgba(204, 51, 51, 0.8); | ||
margin-bottom: 3px; | margin-bottom: 3px; | ||
} | } | ||
| Line 84: | Line 75: | ||
color: white; | color: white; | ||
font-weight: bold; | font-weight: bold; | ||
text-shadow: 1px 1px 3px rgba( | text-shadow: 1px 1px 3px rgba(204, 51, 51, 0.8); | ||
} | } | ||
| Line 94: | Line 85: | ||
/* ------------------------------------- | /* ------------------------------------- | ||
THROWN ITEMS ( | THROWN ITEMS (True Gravity Physics) | ||
-------------------------------------- */ | -------------------------------------- */ | ||
.omgsisa-item { | .omgsisa-item { | ||
| Line 106: | Line 97: | ||
@keyframes item-throw { | @keyframes item-throw { | ||
0% { transform: translate(0, | /* ease-out makes it lose speed as it reaches the peak */ | ||
0% { transform: translate(0, 10px) rotate(0deg); opacity: 0; animation-timing-function: ease-out; } | |||
50% { transform: translate( | 15% { opacity: 1; } | ||
/* Peak height, ease-in makes it gain speed as it falls down */ | |||
100% { transform: translate( | 50% { transform: translate(40px, -70px) rotate(180deg); opacity: 1; animation-timing-function: ease-in; } | ||
85% { opacity: 1; } | |||
100% { transform: translate(80px, 30px) rotate(360deg); opacity: 0; } | |||
} | } | ||
| Line 121: | Line 114: | ||
/* ------------------------------------- | /* ------------------------------------- | ||
FLOATING EMOTIONS ( | FLOATING EMOTIONS (Smooth Upward Float) | ||
-------------------------------------- */ | -------------------------------------- */ | ||
.omgsisa-emotion { | .omgsisa-emotion { | ||
Revision as of 10:41, 22 April 2026
/* Table wrapper forces the box to "shrink-wrap" its contents perfectly. No dead space! */
.omgsisa-aligner {
display: table;
margin: 10px auto;
}
.omgsisa-container {
position: relative;
overflow: hidden;
/* Swapped magenta/pink for a soft valentine red */
background-color: #ff8585;
background: radial-gradient(circle, #ff9999 0%, #ff6b6b 100%);
border: 3px solid #cc3333;
border-radius: 10px;
box-shadow: inset 0 0 10px rgba(204, 51, 51, 0.6), 0 4px 6px rgba(0,0,0,0.1);
padding: 10px 20px;
z-index: 1;
}
/* Background Layers - Larger, softer, sliding only */
.omgsisa-bg {
position: absolute;
top: -50%; left: -50%;
width: 200%; height: 200%;
font-size: 55px; /* Larger so it's not disorienting */
line-height: 1.15;
letter-spacing: -2px;
word-wrap: break-word;
opacity: 0.15; /* Subtler opacity */
z-index: 0;
animation: bg-slide 20s linear infinite; /* Slower, smoother slide */
}
@keyframes bg-slide {
0% { transform: translate(0, 0); }
100% { transform: translate(15%, 15%); }
}
/* Layout - Hugs images and text tight! */
.omgsisa-inner {
position: relative;
z-index: 2;
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: center;
gap: 20px;
}
.omgsisa-text {
text-align: center;
}
.omgsisa-image {
flex: 0 0 auto;
}
/* Title & Audio Styling */
.omgsisa-title {
font-size: 140%;
font-weight: bold;
color: white;
/* Deep soft red stroke */
text-shadow:
-2px -2px 0 #cc3333, 2px -2px 0 #cc3333,
-2px 2px 0 #cc3333, 2px 2px 0 #cc3333,
0px 4px 6px rgba(204, 51, 51, 0.8);
margin-bottom: 3px;
}
.omgsisa-title a { color: white; text-decoration: none; }
.omgsisa-title a:hover { text-decoration: underline; }
.omgsisa-subtitle {
font-size: 110%;
color: white;
font-weight: bold;
text-shadow: 1px 1px 3px rgba(204, 51, 51, 0.8);
}
.omgsisa-audio {
margin-top: 8px;
display: flex;
justify-content: center;
}
/* -------------------------------------
THROWN ITEMS (True Gravity Physics)
-------------------------------------- */
.omgsisa-item {
position: absolute;
top: 85%;
font-size: 24px;
opacity: 0;
z-index: 1;
animation: item-throw linear infinite;
}
@keyframes item-throw {
/* ease-out makes it lose speed as it reaches the peak */
0% { transform: translate(0, 10px) rotate(0deg); opacity: 0; animation-timing-function: ease-out; }
15% { opacity: 1; }
/* Peak height, ease-in makes it gain speed as it falls down */
50% { transform: translate(40px, -70px) rotate(180deg); opacity: 1; animation-timing-function: ease-in; }
85% { opacity: 1; }
100% { transform: translate(80px, 30px) rotate(360deg); opacity: 0; }
}
.i1 { left: 10%; animation-duration: 3s; animation-delay: 0s; }
.i2 { left: 30%; animation-duration: 4s; animation-delay: 1.5s; }
.i3 { left: 50%; animation-duration: 3.5s; animation-delay: 0.5s; }
.i4 { left: 70%; animation-duration: 4.5s; animation-delay: 2s; }
.i5 { left: 85%; animation-duration: 3.2s; animation-delay: 1s; }
.i6 { left: 20%; animation-duration: 3.8s; animation-delay: 2.5s; }
/* -------------------------------------
FLOATING EMOTIONS (Smooth Upward Float)
-------------------------------------- */
.omgsisa-emotion {
position: absolute;
top: 85%;
font-size: 26px;
opacity: 0;
z-index: 1;
animation: emotion-float linear infinite;
}
@keyframes emotion-float {
0% { transform: translateY(0) scale(0.8); opacity: 0; }
20% { opacity: 0.8; }
70% { opacity: 0.8; }
100% { transform: translateY(-90px) scale(1.2); opacity: 0; }
}
.e1 { left: 15%; animation-duration: 5s; animation-delay: 0.2s; }
.e2 { left: 40%; animation-duration: 6s; animation-delay: 1.2s; }
.e3 { left: 65%; animation-duration: 4.5s; animation-delay: 0.8s; }
.e4 { left: 90%; animation-duration: 5.5s; animation-delay: 2.2s; }