File: keyboard-shortcuts.css

package info (click to toggle)
elixir-ex-doc 0.35.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: javascript: 2,848; makefile: 15; xml: 12; sh: 5
file content (37 lines) | stat: -rw-r--r-- 886 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
#keyboard-shortcuts-content dl.shortcut-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 6px 0 8px;
  border-bottom: 1px solid var(--settingsSectionBorder);
}

#keyboard-shortcuts-content dl.shortcut-row:last-of-type {
  border-bottom-style: none;
}

#keyboard-shortcuts-content dl.shortcut-row:first-child {
  padding-top: 0;
}

#keyboard-shortcuts-content :is(.shortcut-keys, .shortcut-description) {
  display: inline-block;
}

#keyboard-shortcuts-content kbd > kbd {
  background-color: var(--settingsInputBorder);
  color: var(--contrast);
  border-radius: var(--borderRadius);
  font-family: inherit;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  padding: 4px 7px 6px 7px;
  min-width: 26px;
  text-align: center;
}

#keyboard-shortcuts-content :is(.shortcut-keys, .shortcut-description) {
  margin: 0;
}