forked from OperationCode/operationcode_frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
89 lines (72 loc) · 1.1 KB
/
index.css
File metadata and controls
89 lines (72 loc) · 1.1 KB
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
85
86
87
88
89
@font-face {
font-family: 'PF Din Display';
font-weight: normal;
src: url('fonts/PFDinDisplayPro-Reg.ttf');
}
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: "Noto Serif", sans-serif;
font-size: 16px;
font-weight: normal;
color: #47566B;
}
h1, h2, h3, h4, h5, h6, a, button {
font-family: 'PF Din Display';
}
*, *:before, *:after {
box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
-webkit-margin-before: 0;
-webkit-margin-after: 0;
margin: 0;
padding: 0;
}
body {
line-height: 1.5;
hyphens: none;
}
/*40px*/
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2.3rem;
}
h3 {
font-size: 2.1rem;
}
h4 {
font-size: 1.9rem;
}
h5 {
font-size: 1.7rem;
}
h6 {
font-size: 1.5rem;
}
#root {
min-height: 100%;
}
.ScrollUpButton {
position: fixed;
bottom: 50;
right: 30;
cursor: pointer;
transitionDuration: 0.2s;
transitionTimingFunction: linear;
transitionDelay: 0s;
}
@media screen and (max-width: 480px) {
html {
font-size: 13px;
}
}
@media screen and (min-width: 481px) and (max-width: 960px) {
html {
font-size: 15px;
}
}