Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_icons.scss « sass « assets - github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 563f0cfd10393cf6a774f3bd5dcdf81650b50ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.icon {
    width: 1em;
    height: 1em;
    vertical-align: -.142em;
    fill: currentColor;
}

#icon-warning {
    color: red;
}

.icon-md {
    font-size: 2em
}

.icon-pulse-slow {
    animation: color 8s infinite;
    animation-direction: alternate;
}

.icon-pulse-fast {
    animation: color 2s infinite;
    animation-direction: alternate;
}

@keyframes color {
    from {fill: $accent-color;}
    to {fill: $primary-fg-color;}
}