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

Template:AngelQuarantine/styles.css: Difference between revisions

Template page
Content deleted Content added
MMONTAGEe (talk | contribs)
No edit summary
MMONTAGEe (talk | contribs)
No edit summary
Line 12: Line 12:
justify-content: center;
justify-content: center;
text-align: center;
text-align: center;
animation: flicker 3s infinite;
}
}


Line 18: Line 19:
70% { box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0); }
70% { box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes flicker {
0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
opacity: 1;
}
20%, 24%, 55% {
opacity: 0.4;
}
}
}

Revision as of 13:12, May 2, 2025

#title{
	font-size: 35px;
	font-weight: bold;
	justify-content: center;
	text-align: center;
	color: #ff4d4d;
	animation: pulse 2s infinite;
}

#subtitle{
	font-weight: bold;
	justify-content: center;
	text-align: center;
	animation: flicker 3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
  70% { box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}