File: style.css

package info (click to toggle)
fretboard 9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,648 kB
  • sloc: makefile: 25; xml: 18
file content (89 lines) | stat: -rw-r--r-- 1,757 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.debug {
  outline: 2px solid green;
}

barre-spin button {
  border-radius: 50%;
  background: transparent;
}

barre-spin button:hover {
  background: rgba(153, 153, 153, 0.3);
}

barre-spin label {
  font-size: 2rem;
  font-weight: bold;
}

chord-diagram-toggle button, .fretboard-chord-diagram-top-toggle button{
  border-radius: 50%;
  padding: 0;
  transition-duration: 150ms;
}

chord-diagram-toggle button:checked {
  background: var(--accent-bg-color);
}

chord-diagram-toggle button:hover {
  background: rgba(153, 153, 153, 0.3);
}

chord-diagram-toggle button:checked:hover {
  background: var(--accent-bg-color);
}

.fretboard-chord-diagram-top-toggle button:checked{
  background: transparent;
  box-shadow: none;
}

.fretboard-chord-diagram-top-toggle, .fretboard-chord-diagram-top-toggle image {
  color: rgba(153, 153, 153, 0.4);
}

.fretboard-chord-diagram-top-toggle.open, .fretboard-chord-diagram-top-toggle image.open {
  color: var(--accent-bg-color);
}

.fretboard-chord-diagram-top-toggle button:hover {
  background: rgba(153, 153, 153, 0.3);
}

.fretboard-chord-name-entry entry {
  font-size: 1.8rem;
  padding: 8px 6px;
  font-weight: 700;
  border-radius: 12px;
}

.fretboard-chord-name-entry entry placeholder {
  color: rgba(125, 125, 125, 0.6);
}

.fretboard-star-toggle:checked {
  background: transparent;
}

.fretboard-star-toggle:checked:hover {
  background: rgba(125, 125, 125, 0.15);
}

.fretboard-chord-preview-dot {
  background: transparent;
  border-radius: 50%;
}

.fretboard-chord-preview-dot.active {
  background: var(--accent-bg-color);
} 

.fretboard-chord-preview-button {
  padding: 16px 0;
  border-radius: 12px;
}

.fretboard-chord-preview-button:hover {
  background-color: alpha(currentColor, 0.025);
}