File: lightsoff.css

package info (click to toggle)
lightsoff 1%3A48.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,140 kB
  • sloc: xml: 40; python: 10; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 451 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.grid > .toggle {
  transition: transform 200ms ease-out, background 200ms ease-out;
  border-radius: 12px;
  transform: scale(0.9);
}

.grid > .toggle:checked/*, .grid > .toggle:hoverr */{
  background-image: linear-gradient(
    45deg,
    oklch(from var(--accent-bg-color) calc(l - 0.1) c calc(h + 10deg)),
    oklch(from var(--accent-bg-color) calc(l + 0.1) c calc(h - 10deg))
  );
  transform: none;
}

.grid {
  margin: 12px;
  margin-top: 0;
}