Files: 86cfe7c6ec39c87ba43e41c3ed13c7902bf07fd8 / tmpl / css / index.css.js
1471 bytesRaw
1 | module.exports = () => ` |
2 | ${require('./fonts.part').sourceCodePro()} |
3 | ${require('./fonts.part').sourceSansPro()} |
4 | |
5 | body { |
6 | font-family: 'Source Sans Pro', Helvetica, sans-serif; |
7 | } |
8 | |
9 | h1, h2 { |
10 | font-weight: normal; |
11 | } |
12 | h1 small { |
13 | font-weight: 300; |
14 | } |
15 | |
16 | code, pre { |
17 | font-family: 'Source Code Pro', monospace; |
18 | } |
19 | pre { |
20 | font-size: 14px; |
21 | } |
22 | pre code { |
23 | white-space: pre-wrap; |
24 | } |
25 | |
26 | p { |
27 | line-height: 1.5; |
28 | } |
29 | |
30 | a { |
31 | text-decoration: none; |
32 | } |
33 | a:hover { |
34 | text-decoration: underline; |
35 | } |
36 | |
37 | hr { |
38 | border: 0; |
39 | border-bottom: 1px solid #ddd; |
40 | } |
41 | |
42 | .nav-content-unit { |
43 | display: flex; |
44 | width: 800px; |
45 | margin: 0px auto; |
46 | border: 1px solid #ddd; |
47 | box-shadow: 0 2px 3px rgba(0,0,0,0.05); |
48 | box-sizing: border-box; |
49 | } |
50 | |
51 | .content { |
52 | max-width: 540px; |
53 | flex: 1; |
54 | padding: 2em 1em 2em 2em; |
55 | } |
56 | .content > :first-child { |
57 | padding-top: 0; |
58 | margin-top: 0; |
59 | } |
60 | |
61 | .footer { |
62 | display: flex; |
63 | width: 800px; |
64 | margin: 0px auto 80px; |
65 | } |
66 | .footer-section { |
67 | list-style: none; |
68 | padding: 1.5em 2em; |
69 | margin: 0; |
70 | } |
71 | .footer-section li { |
72 | line-height: 1.9; |
73 | } |
74 | .footer-section li:first-child { |
75 | text-transform: uppercase; |
76 | font-size: 0.8em; |
77 | font-weight: bold; |
78 | color: #555; |
79 | } |
80 | .footer-section p { |
81 | color: gray; |
82 | margin: 0; |
83 | } |
84 | .footer-section a { |
85 | text-decoration: none; |
86 | color: gray; |
87 | font-weight: 300; |
88 | } |
89 | .footer-section a:hover { |
90 | color: #555; |
91 | } |
92 | |
93 | ${ require('./com.part')() } |
94 | ${ require('./hero.part')() } |
95 | ${ require('./tabs.part')() } |
96 | ${ require('./nav.part')() } |
97 | ${ require('./columns.part')() } |
98 | ` |
Built with git-ssb-web