aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/misc.css
blob: 2da35b6edcbec5c22ac6d12f6daea80d8eed4870 (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
60
61
62
63
.alertbox {
  border: 1px solid;
  border-radius: 8px;
  margin: 16px;
  padding: 16px;
  &.info {
    border-color: #23f4;
    background: #5673ff44;
  }
  p {
    margin: 0;
    padding: 0;
  }
}

button.primary,
button.secondary {
  font-family: inherit;
  font-size: inherit;
  border-radius: 8px;
  border: none;
  padding: 8px 16px;
  box-sizing: border-box;
  cursor: pointer;
  &:disabled {
    opacity: 80%;
    cursor: default;
  }
  &.primary {
    background: #3b005e;
    color: #fff;
  }
  &.secondary {
    background: #dfd4e7;
    color: #202;
  }
}

button.icon {
  border: none;
  background: none;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  &.active {
    font-variation-settings: "FILL" 1;
  }
}

a.icon {
  color: inherit;
  text-decoration: none;
  font-size: 24px;
}

span.inlineIcon {
  font-size: inherit;
  color: inherit;
}

[hidden] {
  display: none;
}