debian-mirror-gitlab/app/assets/stylesheets/framework/logo.scss

131 lines
2.3 KiB
SCSS
Raw Normal View History

2016-09-29 09:46:39 +05:30
@mixin tanuki-logo-colors($path-color) {
fill: $path-color;
transition: all 0.8s;
&:hover {
fill: lighten($path-color, 25%);
transition: all 0.1s;
}
}
.tanuki-logo {
.tanuki-left-ear,
.tanuki-right-ear,
.tanuki-nose {
@include tanuki-logo-colors($tanuki-red);
}
.tanuki-left-eye,
.tanuki-right-eye {
@include tanuki-logo-colors($tanuki-orange);
}
.tanuki-left-cheek,
.tanuki-right-cheek {
@include tanuki-logo-colors($tanuki-yellow);
}
&.animate {
.tanuki-shape {
@include webkit-prefix(animation-duration, 1.5s);
@include webkit-prefix(animation-iteration-count, infinite);
}
.tanuki-left-cheek {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-left-cheek) {
2019-07-07 11:18:12 +05:30
0%,
10%,
100% {
2016-09-29 09:46:39 +05:30
fill: lighten($tanuki-yellow, 25%);
}
2016-11-03 12:29:30 +05:30
2016-09-29 09:46:39 +05:30
90% {
fill: $tanuki-yellow;
}
}
}
.tanuki-left-eye {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-left-eye) {
2019-07-07 11:18:12 +05:30
10%,
80% {
2016-11-03 12:29:30 +05:30
fill: $tanuki-orange;
}
2019-07-07 11:18:12 +05:30
20%,
90% {
2016-11-03 12:29:30 +05:30
fill: lighten($tanuki-orange, 25%);
}
}
2016-09-29 09:46:39 +05:30
}
.tanuki-left-ear {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-left-ear) {
2019-07-07 11:18:12 +05:30
10%,
80% {
2016-11-03 12:29:30 +05:30
fill: $tanuki-red;
}
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
20%,
90% {
2016-11-03 12:29:30 +05:30
fill: lighten($tanuki-red, 25%);
}
}
2016-09-29 09:46:39 +05:30
}
.tanuki-nose {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-nose) {
2019-07-07 11:18:12 +05:30
20%,
70% {
2016-09-29 09:46:39 +05:30
fill: $tanuki-red;
}
2016-11-03 12:29:30 +05:30
2019-07-07 11:18:12 +05:30
30%,
80% {
2016-09-29 09:46:39 +05:30
fill: lighten($tanuki-red, 25%);
}
}
}
.tanuki-right-eye {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-right-eye) {
2019-07-07 11:18:12 +05:30
30%,
60% {
2016-11-03 12:29:30 +05:30
fill: $tanuki-orange;
}
2019-07-07 11:18:12 +05:30
40%,
70% {
2016-11-03 12:29:30 +05:30
fill: lighten($tanuki-orange, 25%);
}
}
2016-09-29 09:46:39 +05:30
}
.tanuki-right-ear {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-right-ear) {
2019-07-07 11:18:12 +05:30
30%,
60% {
2016-11-03 12:29:30 +05:30
fill: $tanuki-red;
}
2019-07-07 11:18:12 +05:30
40%,
70% {
2016-11-03 12:29:30 +05:30
fill: lighten($tanuki-red, 25%);
}
}
2016-09-29 09:46:39 +05:30
}
.tanuki-right-cheek {
2016-11-03 12:29:30 +05:30
@include include-keyframes(animate-tanuki-right-cheek) {
2016-09-29 09:46:39 +05:30
40% {
fill: $tanuki-yellow;
}
2016-11-03 12:29:30 +05:30
2016-09-29 09:46:39 +05:30
60% {
fill: lighten($tanuki-yellow, 25%);
}
}
}
}
2016-11-03 12:29:30 +05:30
}