-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
83 lines (70 loc) · 1.15 KB
/
Copy pathglobal.css
File metadata and controls
83 lines (70 loc) · 1.15 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
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;700;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Raleway", sans-serif;
font-size: 14px;
line-height: 1.5;
color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 400;
line-height: 1.2;
}
h1 {
font-size: 2em;
}
a {
color: inherit;
}
::selection {
background: rgba(34, 255, 56, 0.4);
color: #002e02;
}
body::-webkit-scrollbar {
width: 1.2em;
}
body::-webkit-scrollbar-track {
background: #7ff08a;
}
body::-webkit-scrollbar-thumb {
background-color: #002e02;
border-radius: 2em;
border: 0.3em solid #7ff08a;
}
code {
font-family: menlo, inconsolata, monospace;
font-size: calc(1em - 2px);
color: #555;
background-color: #f0f0f0;
padding: 0.2em 0.4em;
border-radius: 2px;
}
.container {
display: inherit;
justify-content: inherit;
align-items: inherit;
flex-direction: inherit;
flex-wrap: inherit;
height: inherit;
width: 70%;
margin: 0 auto;
}
@media (min-width: 400px) {
body {
font-size: 16px;
}
}
@media screen and (max-width: 768px) {
.container {
width: 80%;
}
}