-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
78 lines (68 loc) · 1.31 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Roboto, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
outline: none !important;
display: grid;
}
#progress {
position: absolute;
bottom: 0;
width: 100vw;
height: 8px;
}
#wrapper {
width: 100vw;
min-width: 100vw;
max-width: 100vw;
height: 100vh;
min-height: 100vh;
max-height: 100vh;
margin: 0;
padding: 0;
padding-bottom: 0.5em;
position: relative;
}
#content {
width: 100vw;
min-width: 100vw;
max-width: 100vw;
height: 100vh;
min-height: 100vh;
max-height: 100vh;
box-sizing: border-box;
position: relative;
display: flex;
flex-flow: column wrap;
column-count: 1;
padding: 0 !important;
margin: 0 !important;
overflow-y: hidden;
overflow-x: scroll;
scroll-snap-type: both mandatory;
}
#content * {
box-sizing: border-box;
margin: 0;
padding: 0 1rem 0 1rem;
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
}
#content::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
#content > p {
scroll-snap-align: start;
}
#content > .hard-break {
flex-basis: 100%;
}
#content > .heading1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}