blob: 75446e9abe17b1dd309e0b6d7c01488fa836acf1 (
plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
Theme Name: North Star - Twenty Eleven
Theme URI: http://lnnorthstar.org
Author: Luke Shumaker, based on work by the WordPress team and Chris Aprea
Author URI: http://lukeshu.ath.cx
License: GNU General Public License
License URI: license.txt
Description: The North Star 2011-2012 theme, a child of Twenty Eleven
Version: 0.1
Tags: multi-author, significant-rolls
Template: twentyeleven
*/
@import url('../twentyeleven/style.css');
@import "twentyeleven-fix.scss";
/* Document-structure-y things */
.entry-header {
font-size: .8em;
figure {
margin: 0;
img {
width: 100%;
height: auto;
}
figcaption {
strong {
text-transform: uppercase;
}
cite {
float: right;
width: 100%;
text-align: right;
text-transform: lowercase;
}
.alignleft,
.alignright {
/* These are obsolete, but I keep them around
* because some old captions have them hardcoded
* in, and I don't want to change them. */
width: 45%;
margin-bottom: 1.5em;
}
}
}
.entry-meta {
.authors {
display: block;
float: left;
& > * {
float: left;
margin-right: 0.5em;
}
.vcard {
* {
display: block;
}
.role {
text-transform: uppercase;
}
}
}
span.entry-date {
display: block;
float: right;
}
}
}
.entry-content,
.entry-summary {
clear: both;
}
/* Generic things */
blockquote {
&:before,
&:after {
color: #740000;
display: block;
line-height: 1em;
font-size: 4em;
}
&:before {
content: "“";
height: 0;
margin-left: -1em;
}
&:after {
content: "”";
margin-left: 100%;
margin-top: -1.25em;
margin-bottom: 1.25em;
}
p {
margin-bottom: 0.5em;
}
footer {
text-align: right;
margin-bottom: 2em;
}
}
dd {
margin-bottom: auto;
margin-left: 4em;
}
/* Specific things */
.widget_statusnetwidget h3 {
background: url('https://si0.twimg.com/images/dev/cms/intents/bird/bird_blue/bird_16_blue.png') no-repeat left center;
padding-left: 24px;
}
|