File: style.css

package info (click to toggle)
kooha 2.3.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,108 kB
  • sloc: xml: 24; makefile: 24; sh: 16
file content (35 lines) | stat: -rw-r--r-- 558 bytes parent folder | download
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
row.error-view {
  padding: 0px;
}

label.large-time {
  font-size: 450%;
  font-weight: 300;
  font-feature-settings: "tnum";
}

label.recording {
  color: var(--destructive-bg-color);
}

label.paused {
  animation-name: blinking;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
  animation-duration: 1s;
}

button.copy-done {
  color: var(--accent-bg-color);
}

window.area-selector .view-port {
  padding: 12px;
  padding-top: 6px;
}

@keyframes blinking {
  0% {
    color: var(--window-fg-color);
  }
}