]> Dogcows Code - chaz/talk-introduction-to-psgi/blob - css/common.css
fix fonts
[chaz/talk-introduction-to-psgi] / css / common.css
1 @import url(https://fonts.googleapis.com/css?family=Open+Sans);
2 @import url(https://fonts.googleapis.com/css?family=Muli);
3 @import url(https://fonts.googleapis.com/css?family=Inconsolata);
4
5 body {
6 font-family: 'Open Sans';
7 }
8
9 .remark-slide-content h1,
10 .remark-slide-content h2,
11 .remark-slide-content h3 {
12 font-family: Muli;
13 font-weight: normal;
14 }
15 .remark-slide-content h2 {
16 font-size: 40px;
17 }
18 .remark-slide-content h3 {
19 font-size: 30px;
20 }
21
22 .remark-slide-content li {
23 line-height: 2em;
24 }
25 .remark-slide-content .condensed li {
26 line-height: 1em;
27 }
28
29
30 .remark-code, .remark-inline-code {
31 font-family: Inconsolata, monospace;
32 }
33 .remark-code {
34 border-radius: 5px;
35 border: 1px solid #ccc;
36 }
37
38 blockquote {
39 border-radius: 5px;
40 border: 1px solid #ccc;
41 background: #f0f0f0;
42 margin: 1.5em 0;
43 padding: 1em;
44 quotes: "\201C""\201D""\2018""\2019";
45 position: relative;
46 }
47 blockquote:before {
48 color: #ccc;
49 position: absolute;
50 content: open-quote;
51 font-size: 6em;
52 line-height: 0.1em;
53 margin-right: 0.25em;
54 vertical-align: -0.4em;
55 }
56
57 .col {
58 box-sizing: border-box;
59 display: block;
60 float: left;
61 border: 0;
62 margin: 0;
63 padding: 0;
64 width: 50%;
65 }
66 .col:nth-of-type(odd) {
67 padding: 0 1em 0 0;
68 }
69 .col:nth-of-type(even) {
70 padding: 0 0 0 1em;
71 }
72 .col.sep:nth-of-type(odd) {
73 border-right: 1px solid #ccc;
74 }
75 .col.sep:nth-of-type(even) {
76 border-left: 1px solid #ccc;
77 }
78
79 .top-right {
80 float: right;
81 margin: 50px 0 0 2em;
82 }
83
84 .highlight {
85 color: #7d9726;
86 }
87
This page took 0.036826 seconds and 4 git commands to generate.