-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobals.scss
68 lines (56 loc) · 906 Bytes
/
globals.scss
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');
@import 'themes';
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
border-width: 0;
border-style: solid;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: bold;
}
h1 {
text-align: center;
font-size: 4.2rem;
}
h2 {
text-align: center;
font-size: 3.15rem;
}
h3 {
font-size: 2.36rem;
font-weight: normal;
}
h4 {
font-size: 1.77rem;
}
h5 {
font-size: 1.33rem;
}
header {
box-shadow: 0 4px 16px #8888884d;
}
input[type='text'],
input[type='search'] {
padding: 0.5rem;
width: 100%;
border-width: 1px;
border-radius: 0.5rem;
font-size: 1rem;
outline: none;
}