aboutsummaryrefslogtreecommitdiff
path: root/local.css
blob: 978d2c3f7206bc6c5b1c1297283fa0add9e6e30d (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*	lessish stylesheet for ikiwiki
	responsive styles based on the Less CSS Framework
	version 0.1 - 29 June 2012 
	https://github.com/spiffin/ikiwiki_lessish */

/*	Less Framework 4
	http://lessframework.com
	by Joni Korpi
	License: http://opensource.org/licenses/mit-license.php	*/

/*	Typography presets
	------------------	*/

.gigantic {
	font-size: 110px;
	line-height: 120px;
	letter-spacing: -2px;
}

.huge, h1 {
	/*font-size: 52px;*/
	line-height: 61px;
	letter-spacing: -1px;
}

.large, h2 {
	/*font-size: 42px;*/
	line-height: 48px;
}

.bigger, h3 {
	font-size: 26px;
	line-height: 36px;
}

.big, h4 {
	font-size: 22px;
	line-height: 30px;
}

body {
	font: 1.25em/150% Georgia, serif;
}

.small, small {
	font-size: 13px;
	line-height: 18px;
}

/* Selection colours (easy to forget) */

::selection 	 	{background: rgb(255,255,158);}
::-moz-selection 	{background: rgb(255,255,158);}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: rgb(255,255,158);}

/*		Default Layout: 992px. 
		Gutters: 24px.
		Outer margins: 48px.
		Leftover space for scrollbars @1024px: 32px.
-------------------------------------------------------------------------------
cols    1     2      3      4      5      6      7      8      9      10
px      68    160    252    344    436    528    620    712    804    896    */

body {
	width: 896px;
	padding: 72px 48px 84px;
	margin: 0 auto;
	color: rgb(60,60,60);
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
}

/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	body {
		width: 712px;
		padding: 48px 28px 60px;
	}
}

/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	
	body {
		width: 252px;
		padding: 48px 34px 60px;
	}
	
}

/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	body {
		width: 436px;
		padding: 36px 22px 48px;
	}
	
}

/*	End Less
	------	*/

.header {
	font-weight: normal;
	font-size: 200%;
}

h1, h2, h3, h4 { font-weight: normal; margin: 10px 0 -10px; }

p + p { margin-top: 8px; }

a:link { text-decoration: underline; color: #59c903; }
a:visited { text-decoration: underline; color: #5d9a20; }
a:hover { background: #efefef; text-decoration: none; color: #333; }
a:active { background: #efefef; text-decoration: underline; color: #00ff00; }

hr { border: 0; height: 1px; color: #333; margin: 10px 0; background-color: #666; }

.actions ul {
	margin: 0 0 10px;
	padding: 16px .8em 10px 0px;
	height: auto;
}
.actions li {
	padding: 0 .5em 0 0;
}

.pagedate,
.pagelicense,
.pagecopyright {
	font-size: small;
	color: #ccc;
}

blockquote {
	font-style: italic;
}

code {
	/*font: 14px Monaco, Courier, monospace;*/
	line-height: 24px;
}

textarea {
	font: 12.5px Monaco, monospace;
	background: #232323;
	color: #a7ed61;
}

.pageheader #otherlanguages,
.pageheader .actions ul {
	border-bottom: 1px solid #666;
}

#pageinfo {
	margin: 1em 0;
	border-top: 1px solid #666;
}

.notebox {
	color: #333 !important;
}

.sidebar {
	border: 1px solid #aaa;
}

input#searchbox {
	background: none;
}

#content pre {
  background: rgb(230,230,230);
  padding: 10px;
  border: solid 1px #BBBBBB;
}