-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathglobal.css
68 lines (56 loc) · 1.04 KB
/
global.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
html {
box-sizing: border-box;
}
body {
height: 100vh;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-webkit-user-select: none;
user-select: none;
image-rendering: crisp-edges;
font-size: 15px;
}
* {
font-family: "Ubuntu", "HelveticaNeue-Light", "Helvetica Neue Light",
"Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
@font-face {
font-family: "Ubuntu";
font-style: normal;
font-weight: 400;
src: local("Ubuntu"), local("Ubuntu Regular"), local("Ubuntu-Regular"),
url("./fonts/Ubuntu.ttf") format("truetype");
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.8rem;
}
h3 {
font-size: 1.6rem;
}
h4 {
font-size: 1.5rem;
}
.btn-primary {
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary:hover {
background-color: #286090;
border-color: #204d74;
}
a {
color: #337ab7;
}
a:hover {
color: #286090;
}
.container {
max-width: 50rem;
}