generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
84 lines (75 loc) · 1.23 KB
/
index.css
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(../fonts/Poppins/Poppins-Regular.ttf);
}
@font-face {
font-family: 'Poppins';
font-style: bold;
font-weight: 900;
font-display: swap;
src: url(../fonts/Poppins/Poppins-Bold.ttf);
}
@font-face {
font-family: 'Amiri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(../fonts/Amiri/Amiri-Regular.ttf);
}
*,
*::after,
*::before {
box-sizing: border-box;
}
/**
* Make sure the app fills the height of the screen.
*/
body {
height: 100dvh;
box-sizing: border-box;
}
/**
* Keep 1 rem as 16px for better Tailwind integration.
*/
html {
font-size: 16px;
}
body {
font-family:
-apple-system,
BlinkMacSystemFont,
avenir next,
avenir,
segoe ui,
helvetica neue,
helvetica,
Ubuntu,
roboto,
noto,
arial,
sans-serif;
font-size: 1.8rem;
line-height: 1.4;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
border-radius: 4px;
display: inline-block;
font-family:
Menlo,
Consolas,
Monaco,
Liberation Mono,
Lucida Console,
monospace;
font-size: 0.9em;
padding: 0.15em 0.15em;
}