Entrance Announcement
MICTE 2080
2080 Magh 07
MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
Replaced content with ":root { --bg: #f4f7ff; --card-bg: #ffffff; --primary: #6366f1; →neon indigo: --secondary: #22c55e; →neon green: --accent: #f43f5e; →neon pink/red: --highlight: #0ea5e9; →cyan: --text: #1f2937; }" Tag: Replaced |
No edit summary |
||
| Line 7: | Line 7: | ||
--highlight: #0ea5e9; /* cyan */ | --highlight: #0ea5e9; /* cyan */ | ||
--text: #1f2937; | --text: #1f2937; | ||
} | |||
/* Global */ | |||
body { | |||
margin: 0; | |||
font-family: 'Orbitron', 'Segoe UI', sans-serif; | |||
background: radial-gradient(circle at top, #e0e7ff, var(--bg)); | |||
color: var(--text); | |||
} | |||
/* Animation */ | |||
@keyframes glowPulse { | |||
0% { box-shadow: 0 0 5px var(--primary); } | |||
50% { box-shadow: 0 0 15px var(--accent); } | |||
100% { box-shadow: 0 0 5px var(--primary); } | |||
} | |||
.glow { | |||
animation: glowPulse 2s infinite; | |||
} | } | ||
Latest revision as of 05:04, 24 March 2026
:root {
--bg: #f4f7ff;
--card-bg: #ffffff;
--primary: #6366f1; /* neon indigo */
--secondary: #22c55e; /* neon green */
--accent: #f43f5e; /* neon pink/red */
--highlight: #0ea5e9; /* cyan */
--text: #1f2937;
}
/* Global */
body {
margin: 0;
font-family: 'Orbitron', 'Segoe UI', sans-serif;
background: radial-gradient(circle at top, #e0e7ff, var(--bg));
color: var(--text);
}
/* Animation */
@keyframes glowPulse {
0% { box-shadow: 0 0 5px var(--primary); }
50% { box-shadow: 0 0 15px var(--accent); }
100% { box-shadow: 0 0 5px var(--primary); }
}
.glow {
animation: glowPulse 2s infinite;
}