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

web_ide_loader.scss « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f922cadc235fd15d2231f4784402fd05729e32b8 (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
30
31
32
33
34
35
36
37
38
.web-ide-loader {
  max-width: 400px;
}

.web-ide-loader .tanuki-logo {
  width: 50px;
  height: 50px;
}

.web-ide-loader .tanuki,
.web-ide-loader .right-cheek,
.web-ide-loader .chin,
.web-ide-loader .left-cheek {
  animation: animate-tanuki 1.5s infinite;
}

.web-ide-loader .right-cheek {
  animation-delay: 0.35s;
}

.web-ide-loader .chin {
  animation-delay: 0.7s;
}

.web-ide-loader .left-cheek {
  animation-delay: 1.05s;
}

@keyframes animate-tanuki {
  0%,
  50% {
    filter: brightness(1) grayscale(0);
  }

  25% {
    filter: brightness(1.2) grayscale(0.2);
  }
}