eduGHoSt / style.css
dropkickJesus999's picture
Instead of ghost.edu, use real colleges like slcc.edu or harvard.edu. be creative.
cb3cbbc verified
raw
history blame contribute delete
944 Bytes
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap');
body {
font-family: 'Source Code Pro', monospace;
}
.neon-shadow {
box-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5);
}
.neon-text {
text-shadow: 0 0 5px rgba(255, 0, 0, 0.7), 0 0 10px rgba(255, 0, 0, 0.5);
}
.btn-neon {
background-color: rgba(0, 0, 0, 0.8);
border: 1px solid rgba(255, 0, 0, 0.7);
transition: all 0.3s ease;
}
.btn-neon:hover {
background-color: rgba(255, 0, 0, 0.2);
box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}
.email-item {
border-bottom: 1px solid rgba(255, 0, 0, 0.3);
transition: all 0.2s ease;
}
.email-item:hover {
background-color: rgba(255, 0, 0, 0.1);
}
/* Animation for new email notification */
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
.new-email {
animation: pulse 2s infinite;
}