aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.css
blob: a451f0706eaaa978b34eff6578f4d82bcc260de5 (plain) (blame)
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
@import 'tailwindcss';

@layer base {
  @import './cs16.css';

  html {
    font-size: 21px;
  }

  body {
    padding: 40px;
    max-width: 800px;
    margin: auto;
    margin: 0 max(0px, round(50vw - (800px/2), 1px));
  }

  ::selection {
    background-color: #958831;
    color: white;
  }

  @media (max-width: 400px) {
    body {
      padding: 20px;
    }
  }

  a:not(.default) {
    @apply hover:underline text-[#baab44];
  }
}