forked from bshiluk/vue-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (46 loc) · 1.04 KB
/
style.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
/*
Theme Name: Vue.wordpress
Author: Brandon Shiluk
Author URI: https://github.com/bucky355
Description: Takes a hybrid approach, using Wordpress to manage and serve initial content. Vue.js takes over all future in-site navigation effectively transforming the site into a SPA.
Version: 1.0.0
Text Domain: vue-wordpress
*/
/* Base Styles
------------------------------------- */
html {
font-size: 62.5%;
}
body {
margin: 0;
font-size: 1.5em;
line-height: 1.6;
font-weight: 400;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,Cantarell, "Helvetica Neue", sans-serif;
color: #444;
background-color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
main {
min-height: 100vh;
overflow: hidden;
}
.container {
width: 100%;
max-width: 120rem;
margin-left: auto;
margin-right: auto;
padding-left: 1.6rem;
padding-right: 1.6rem;
box-sizing: border-box;
}
h1 {
font-size: 3.2rem;
}
h2 {
font-size: 2.4rem;
}
h3 {
font-size: 2rem;
}