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