public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Upgraded Blueprint
Michael Hartl (author)
Wed Feb 20 17:44:06 -0800 2008
commit  e8bc0fc2eda4fedff91c736255bb5676d11cdc53
tree    34e1644dc9add3151dc67466b3b5b2975de732d3
parent  0957c3d5aaaa71e1c66d80e7e3a20c79107bf148
...
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
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
0
@@ -1,68 +1,29 @@
0
-/* --------------------------------------------------------------
0
-
0
- Blueprint CSS Framework Print Styles
0
- * Gives you some sensible styles for printing pages.
0
- See Readme file in this directory for further instructions.
0
-
0
- Some additions you'll want to make, customized to your markup:
0
- #header, #footer, #navigation { display:none; }
0
-
0
--------------------------------------------------------------- */
0
-
0
-body {
0
- line-height: 1.5;
0
- font-family: "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
0
- color:#000;
0
- background: none;
0
- font-size: 10pt;
0
-}
0
-.container {
0
- background: none;
0
-}
0
-
0
-h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }
0
-code { font:.9em "Courier New", Monaco, Courier, monospace; }
0
-
0
-img { float:left; margin:1.5em 1.5em 1.5em 0; }
0
-a img { border:none; }
0
-p img.top { margin-top: 0; }
0
-
0
-hr {
0
- background:#ccc;
0
- color:#ccc;
0
- width:100%;
0
- height:2px;
0
- margin:2em 0;
0
- padding:0;
0
- border:none;
0
-}
0
-
0
-blockquote {
0
- margin:1.5em;
0
- padding:1em;
0
- font-style:italic;
0
- font-size:.9em;
0
-}
0
-
0
-.small { font-size: .9em; }
0
-.large { font-size: 1.1em; }
0
-.quiet { color: #999; }
0
-.hide { display:none; }
0
-
0
-a:link, a:visited {
0
- background: transparent;
0
- font-weight:700;
0
- text-decoration: underline;
0
-}
0
-
0
-a:link:after, a:visited:after {
0
- content: " (" attr(href) ") ";
0
- font-size: 90%;
0
-}
0
-
0
-/* If you're having trouble printing relative links, uncomment and customize this:
0
- (note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
0
-
0
-/* a[href^="/"]:after {
0
- content: " (http://www.yourdomain.com" attr(href) ") ";
0
-} */
0
+/* -----------------------------------------------------------------------
0
+
0
+ Blueprint CSS Framework 0.7
0
+ http://blueprintcss.googlecode.com
0
+
0
+ * Copyright (c) 2007-2008. See LICENSE for more info.
0
+ * See README for instructions on how to use Blueprint.
0
+ * For credits and origins, see AUTHORS.
0
+ * This is a compressed file. See the sources in the 'src' directory.
0
+
0
+----------------------------------------------------------------------- */
0
+
0
+/* print.css */
0
+body {line-height:1.5;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;color:#000;background:none;font-size:10pt;}
0
+.container {background:none;}
0
+hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
0
+hr.space {background:#fff;color:#fff;}
0
+h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
0
+code {font:.9em "Courier New", Monaco, Courier, monospace;}
0
+img {float:left;margin:1.5em 1.5em 1.5em 0;}
0
+a img {border:none;}
0
+p img.top {margin-top:0;}
0
+blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
0
+.small {font-size:.9em;}
0
+.large {font-size:1.1em;}
0
+.quiet {color:#999;}
0
+.hide {display:none;}
0
+a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
0
+a:link:after, a:visited:after {content:" (" attr(href) ") ";font-size:90%;}
0
\ No newline at end of file
...
1
2
3
4
5
6
7
8
 
9
10
11
12
13
 
 
14
15
16
17
18
19
20
21
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
...
 
 
 
 
 
 
 
 
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
0
@@ -1,22 +1,227 @@
0
-/* --------------------------------------------------------------
0
-
0
- Blueprint CSS Framework Screen Styles
0
- * Version: 0.6 (21.9.2007)
0
- * Website: http://code.google.com/p/blueprintcss/
0
- See Readme file in this directory for further instructions.
0
-
0
--------------------------------------------------------------- */
0
+/* -----------------------------------------------------------------------
0
 
0
-@import 'lib/reset.css';
0
-@import 'lib/typography.css';
0
-@import 'lib/grid.css';
0
-@import 'lib/forms.css';
0
+ Blueprint CSS Framework 0.7
0
+ http://blueprintcss.googlecode.com
0
 
0
-/* Plugins:
0
- Additional functionality can be found in the plugins directory.
0
- See the readme files for each plugin. Example:
0
- @import 'plugins/buttons/buttons.css'; */
0
-
0
-/* See the grid:
0
- Uncomment the line below to see the grid and baseline.
0
- .container { background: url(lib/grid.png); } */
0
+ * Copyright (c) 2007-2008. See LICENSE for more info.
0
+ * See README for instructions on how to use Blueprint.
0
+ * For credits and origins, see AUTHORS.
0
+ * This is a compressed file. See the sources in the 'src' directory.
0
+
0
+----------------------------------------------------------------------- */
0
+
0
+/* reset.css */
0
+html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
0
+body {line-height:1.5;}
0
+table {border-collapse:separate;border-spacing:0;}
0
+caption, th, td {text-align:left;font-weight:normal;}
0
+table, td, th {vertical-align:middle;}
0
+blockquote:before, blockquote:after, q:before, q:after {content:"";}
0
+blockquote, q {quotes:"" "";}
0
+a img {border:none;}
0
+
0
+/* typography.css */
0
+body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;}
0
+h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
0
+h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
0
+h2 {font-size:2em;margin-bottom:0.75em;}
0
+h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
0
+h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;height:1.25em;}
0
+h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
0
+h6 {font-size:1em;font-weight:bold;}
0
+h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
0
+p {margin:0 0 1.5em;}
0
+p img {float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}
0
+p img.right {float:right;margin:1.5em 0 1.5em 1.5em;}
0
+a:focus, a:hover {color:#000;}
0
+a {color:#009;text-decoration:underline;}
0
+blockquote {margin:1.5em;color:#666;font-style:italic;}
0
+strong {font-weight:bold;}
0
+em, dfn {font-style:italic;}
0
+dfn {font-weight:bold;}
0
+sup, sub {line-height:0;}
0
+abbr, acronym {border-bottom:1px dotted #666;}
0
+address {margin:0 0 1.5em;font-style:italic;}
0
+del {color:#666;}
0
+pre, code {margin:1.5em 0;white-space:pre;}
0
+tt {display:block;margin:1.5em 0;line-height:1.5;}
0
+pre, code, tt {font:1em 'andale mono', 'lucida console', monospace;line-height:1.5;}
0
+li ul, li ol {margin:0 1.5em;}
0
+ul, ol {margin:0 1.5em 1.5em 1.5em;}
0
+ul {list-style-type:disc;}
0
+ol {list-style-type:decimal;}
0
+dl {margin:0 0 1.5em 0;}
0
+dl dt {font-weight:bold;}
0
+dd {margin-left:1.5em;}
0
+table {margin-bottom:1.4em;width:100%;}
0
+th {font-weight:bold;background:#C3D9FF;}
0
+th, td {padding:4px 10px 4px 5px;}
0
+tr.even td {background:#E5ECF9;}
0
+tfoot {font-style:italic;}
0
+caption {background:#eee;}
0
+.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
0
+.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
0
+.hide {display:none;}
0
+.quiet {color:#666;}
0
+.loud {color:#000;}
0
+.highlight {background:#ff0;}
0
+.added {background:#060;color:#fff;}
0
+.removed {background:#900;color:#fff;}
0
+.first {margin-left:0;padding-left:0;}
0
+.last {margin-right:0;padding-right:0;}
0
+.top {margin-top:0;padding-top:0;}
0
+.bottom {margin-bottom:0;padding-bottom:0;}
0
+
0
+/* grid.css */
0
+.container {width:950px;margin:0 auto;}
0
+.showgrid {background:url(src/grid.png);}
0
+body {margin:1.5em 0;}
0
+div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {float:left;margin-right:10px;}
0
+div.last {margin-right:0;}
0
+.span-1 {width:30px;}
0
+.span-2 {width:70px;}
0
+.span-3 {width:110px;}
0
+.span-4 {width:150px;}
0
+.span-5 {width:190px;}
0
+.span-6 {width:230px;}
0
+.span-7 {width:270px;}
0
+.span-8 {width:310px;}
0
+.span-9 {width:350px;}
0
+.span-10 {width:390px;}
0
+.span-11 {width:430px;}
0
+.span-12 {width:470px;}
0
+.span-13 {width:510px;}
0
+.span-14 {width:550px;}
0
+.span-15 {width:590px;}
0
+.span-16 {width:630px;}
0
+.span-17 {width:670px;}
0
+.span-18 {width:710px;}
0
+.span-19 {width:750px;}
0
+.span-20 {width:790px;}
0
+.span-21 {width:830px;}
0
+.span-22 {width:870px;}
0
+.span-23 {width:910px;}
0
+.span-24, div.span-24 {width:950px;margin:0;}
0
+.append-1 {padding-right:40px;}
0
+.append-2 {padding-right:80px;}
0
+.append-3 {padding-right:120px;}
0
+.append-4 {padding-right:160px;}
0
+.append-5 {padding-right:200px;}
0
+.append-6 {padding-right:240px;}
0
+.append-7 {padding-right:280px;}
0
+.append-8 {padding-right:320px;}
0
+.append-9 {padding-right:360px;}
0
+.append-10 {padding-right:400px;}
0
+.append-11 {padding-right:440px;}
0
+.append-12 {padding-right:480px;}
0
+.append-13 {padding-right:520px;}
0
+.append-14 {padding-right:560px;}
0
+.append-15 {padding-right:600px;}
0
+.append-16 {padding-right:640px;}
0
+.append-17 {padding-right:680px;}
0
+.append-18 {padding-right:720px;}
0
+.append-19 {padding-right:760px;}
0
+.append-20 {padding-right:800px;}
0
+.append-21 {padding-right:840px;}
0
+.append-22 {padding-right:880px;}
0
+.append-23 {padding-right:920px;}
0
+.prepend-1 {padding-left:40px;}
0
+.prepend-2 {padding-left:80px;}
0
+.prepend-3 {padding-left:120px;}
0
+.prepend-4 {padding-left:160px;}
0
+.prepend-5 {padding-left:200px;}
0
+.prepend-6 {padding-left:240px;}
0
+.prepend-7 {padding-left:280px;}
0
+.prepend-8 {padding-left:320px;}
0
+.prepend-9 {padding-left:360px;}
0
+.prepend-10 {padding-left:400px;}
0
+.prepend-11 {padding-left:440px;}
0
+.prepend-12 {padding-left:480px;}
0
+.prepend-13 {padding-left:520px;}
0
+.prepend-14 {padding-left:560px;}
0
+.prepend-15 {padding-left:600px;}
0
+.prepend-16 {padding-left:640px;}
0
+.prepend-17 {padding-left:680px;}
0
+.prepend-18 {padding-left:720px;}
0
+.prepend-19 {padding-left:760px;}
0
+.prepend-20 {padding-left:800px;}
0
+.prepend-21 {padding-left:840px;}
0
+.prepend-22 {padding-left:880px;}
0
+.prepend-23 {padding-left:920px;}
0
+div.border {padding-right:4px;margin-right:5px;border-right:1px solid #eee;}
0
+div.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #eee;}
0
+.pull-1 {margin-left:-40px;}
0
+.pull-2 {margin-left:-80px;}
0
+.pull-3 {margin-left:-120px;}
0
+.pull-4 {margin-left:-160px;}
0
+.pull-5 {margin-left:-200px;}
0
+.pull-6 {margin-left:-240px;}
0
+.pull-7 {margin-left:-280px;}
0
+.pull-8 {margin-left:-320px;}
0
+.pull-9 {margin-left:-360px;}
0
+.pull-10 {margin-left:-400px;}
0
+.pull-11 {margin-left:-440px;}
0
+.pull-12 {margin-left:-480px;}
0
+.pull-13 {margin-left:-520px;}
0
+.pull-14 {margin-left:-560px;}
0
+.pull-15 {margin-left:-600px;}
0
+.pull-16 {margin-left:-640px;}
0
+.pull-17 {margin-left:-680px;}
0
+.pull-18 {margin-left:-720px;}
0
+.pull-19 {margin-left:-760px;}
0
+.pull-20 {margin-left:-800px;}
0
+.pull-21 {margin-left:-840px;}
0
+.pull-22 {margin-left:-880px;}
0
+.pull-23 {margin-left:-920px;}
0
+.pull-24 {margin-left:-960px;}
0
+.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {float:left;position:relative;}
0
+.push-1 {margin:0 -40px 1.5em 40px;}
0
+.push-2 {margin:0 -80px 1.5em 80px;}
0
+.push-3 {margin:0 -120px 1.5em 120px;}
0
+.push-4 {margin:0 -160px 1.5em 160px;}
0
+.push-5 {margin:0 -200px 1.5em 200px;}
0
+.push-6 {margin:0 -240px 1.5em 240px;}
0
+.push-7 {margin:0 -280px 1.5em 280px;}
0
+.push-8 {margin:0 -320px 1.5em 320px;}
0
+.push-9 {margin:0 -360px 1.5em 360px;}
0
+.push-10 {margin:0 -400px 1.5em 400px;}
0
+.push-11 {margin:0 -440px 1.5em 440px;}
0
+.push-12 {margin:0 -480px 1.5em 480px;}
0
+.push-13 {margin:0 -520px 1.5em 520px;}
0
+.push-14 {margin:0 -560px 1.5em 560px;}
0
+.push-15 {margin:0 -600px 1.5em 600px;}
0
+.push-16 {margin:0 -640px 1.5em 640px;}
0
+.push-17 {margin:0 -680px 1.5em 680px;}
0
+.push-18 {margin:0 -720px 1.5em 720px;}
0
+.push-19 {margin:0 -760px 1.5em 760px;}
0
+.push-20 {margin:0 -800px 1.5em 800px;}
0
+.push-21 {margin:0 -840px 1.5em 840px;}
0
+.push-22 {margin:0 -880px 1.5em 880px;}
0
+.push-23 {margin:0 -920px 1.5em 920px;}
0
+.push-24 {margin:0 -960px 1.5em 960px;}
0
+.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float:right;position:relative;}
0
+.box {padding:1.5em;margin-bottom:1.5em;background:#E5ECF9;}
0
+hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:.1em;margin:0 0 1.45em;border:none;}
0
+hr.space {background:#fff;color:#fff;}
0
+.clearfix, .container {display:inline-block;}
0
+.clearfix:after, .container:after {content:".";display:block;height:0;clear:both;visibility:hidden;}
0
+* html .clearfix, * html .container {height:1%;}
0
+.clearfix, .container {display:block;}
0
+.clear {clear:both;}
0
+
0
+/* forms.css */
0
+label {font-weight:bold;}
0
+fieldset {padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
0
+legend {font-weight:bold;font-size:1.2em;}
0
+input.text, input.title, textarea, select {margin:0.5em 0;border:1px solid #bbb;}
0
+input.text:focus, input.title:focus, textarea:focus, select:focus {border:1px solid #666;}
0
+input.text, input.title {width:300px;padding:5px;}
0
+input.title {font-size:1.5em;}
0
+textarea {width:390px;height:250px;padding:5px;}
0
+.error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
0
+.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
0
+.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
0
+.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
0
+.error a {color:#8a1f11;}
0
+.notice a {color:#514721;}
0
+.success a {color:#264409;}
0
\ No newline at end of file

Comments

    No one has commented yet.