You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
766 B
Plaintext
29 lines
766 B
Plaintext
12 years ago
|
@import "../vanilla/header";
|
||
|
|
||
|
.header {
|
||
|
//glowing animation for active state
|
||
|
.dropdown-toggle {
|
||
|
i {
|
||
|
@-webkit-keyframes glow
|
||
|
{
|
||
|
from {text-shadow: 0 0 5px #aaf, 0 0 5px #aaf, 0 0 5px #aaf;}
|
||
|
50% {text-shadow: 0 0 10px #aaf, 0 0 10px #aaf, 0 0 10px #aaf;}
|
||
|
to {text-shadow: 0 0 5px #aaf, 0 0 5px #aaf, 0 0 5px #aaf;}
|
||
|
}
|
||
|
@keyframes glow
|
||
|
{
|
||
|
from {text-shadow: 0 0 5px #aaf, 0 0 5px #aaf, 0 0 5px #aaf;}
|
||
|
50% {text-shadow: 0 0 10px #aaf, 0 0 10px #aaf, 0 0 10px #aaf;}
|
||
|
to {text-shadow: 0 0 5px #aaf, 0 0 5px #aaf, 0 0 5px #aaf;}
|
||
|
}
|
||
|
|
||
|
&.active {
|
||
|
color: #558;
|
||
|
text-shadow: 0 0 1em #aaf, 0 0 1em #aaf, 0 0 1em #aaf;
|
||
|
-webkit-animation:glow 1.5s infinite linear;
|
||
|
animation:glow 1.5s infinite linear;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|