blob: 81cb55db1d78dd7695e5e4f98f5aa28b87dc73ce (
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
 | @use "./sass/abstracts/variables" as var;
a {
  color: var.$primary-color;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all 0.3s ease-in 0s;
  &:hover,
  &:focus {
    color: var.$primary-color-light;
  }
  &:hover {
    text-decoration-thickness: 1px;
  }
  &:active {
    color: var.$primary-color-dark;
  }
}
#app {
  background: var.$background-color;
  color: var.$foreground-color;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.618;
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
}
.container {
  width: min(calc(100vw - 2rem), 80ch);
  margin: auto;
}
.main {
  flex: 1;
}
 |