-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (46 loc) · 1.05 KB
/
styles.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
@font-face {
font-family: "PT Mono";
src: url("./fonts/PT%20Mono_Regular.eot");
src: url("./fonts/PT%20Mono_Regular.eot?#iefix") format("embedded-opentype"),
url("./fonts/PT%20Mono_Regular.woff2") format("woff2"),
url("./fonts/PT%20Mono_Regular.woff") format("woff"),
url("./fonts/PT%20Mono_Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "PT Mono";
src: url("./fonts/PT%20Mono_Bold.eot");
src: url("./fonts/PT%20Mono_Bold.eot?#iefix") format("embedded-opentype"),
url("./fonts/PT%20Mono_Bold.woff2") format("woff2"),
url("./fonts/PT%20Mono_Bold.woff") format("woff"),
url("./fonts/PT%20Mono_Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
button {
margin: 0;
padding: 0;
}
html {
background: #232323;
}
::selection {
background: #f5e05b;
color: #ffffff;
text-shadow: none;
}
* {
font-family: "PT Mono", monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}