File: style.css

package info (click to toggle)
gnome-tour 49.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,172 kB
  • sloc: sh: 36; xml: 24; makefile: 19
file content (45 lines) | stat: -rw-r--r-- 1,104 bytes parent folder | download | duplicates (2)
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
39
40
41
42
43
44
45
/* pages */

@keyframes up-and-down {
  from {
    background-position: center 30%, center 30%, center;
  }

  to {
    background-position: center 40%, center 30%, center;
  }
}

@keyframes left-and-right {
  from {
    background-position: 40% 30%, center 30%, center;
  }

  to {
    background-position: 60% 30%, center 30%, center;
  }
}

/* .page:nth-child(2) { background: linear-gradient(to right, #3584e4, #1a5fb4); }  overview */
.page:nth-child(3) {}

/* customize */
/* .page:nth-child(4) { background: linear-gradient(to right, #e66100, #c64600); }  workspaces */

.page:nth-child(5) {
  /* up down */
  background: url('/org/gnome/Tour/hand-fg.svg'),
    url('/org/gnome/Tour/updown-bg.svg');
  background-repeat: no-repeat;
  background-position: center 30%;
  animation: up-and-down 2s ease-in-out infinite alternate;
}

.page:nth-child(6) {
  /* left right */
  background: url('/org/gnome/Tour/hand-fg.svg'),
    url('/org/gnome/Tour/leftright-bg.svg');
  background-repeat: no-repeat;
  background-position: center 30%;
  animation: left-and-right 2s ease-in-out infinite alternate;
}