summaryrefslogtreecommitdiff
path: root/home/apps/wofi/style.css.mustache
blob: ba4945f70516825f16b0bbaaed32d4f9c3e09af7 (plain)
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
* {
   font-family: "{{font.monospace}}";
   font-size: {{font.size}}px;
}

/* Window */
window {
   margin: 0px;
   border: none;
   border-radius: {{outerRadius}}px;
   background-color: #{{colors.base}};
}

/* Outer Box */
#outer-box {
   padding: {{outerGap}}px;
}

/* Scroll */
#scroll {
   margin: 0px;
   padding: {{innerGap}}px;
   border: none;
}

/* Input */
#input {
  margin: {{innerGap}}px;
  padding: {{innerGap}}px;
  border: none;
  color: #{{colors.text}};
  background-color: #{{colors.surface}};
  border-radius: {{outerRadius}}px;
}

#input:focus,
#input:active {
  border: {{borderWidth}}px solid #{{colors.primary}};
  box-shadow: none;
  outline: none;
}

/* Text */
#text {
   margin: {{innerGap}}px;
   padding: {{innerGap}}px;
   border: none;
   color: #{{colors.text}};
}

/* Selected Entry */
#entry:selected {
  background-color: #{{colors.primary}};
  border-radius: {{outerRadius}}px;
}

#entry:selected #text {
   color: #{{colors.base}};
}