Skip to content

Commit

Permalink
- 0.5, 0.6, 0.6.1, 0.6.2 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johndyer committed Mar 28, 2011
1 parent d3615ca commit 85f7671
Show file tree
Hide file tree
Showing 24 changed files with 4,949 additions and 154 deletions.
2 changes: 1 addition & 1 deletion Builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
bibly_files.append('bibly.js')

bibly_filename = 'bibly'
bibly_version = '0.5.1'
bibly_version = '0.6.2'
bibly_version_path = 'build/' + bibly_version + '/'
bibly_active_path = 'build/'

Expand Down
106 changes: 106 additions & 0 deletions build/0.5.1/bibly.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
/* <a href="http://bib.ly/john3.16" class="bibly_reference">John 3:16 </a>*/
.bibly_reference {
/* white-space: nowrap; keeps the who link together */
}
/*
<div class="bibly_popup_container">
<div class="bibly_popup_header">John 3:16</div>
<div class="bibly_popup_content">
For God...
</div>
<div class="bibly_popup_footer">John 3:16</div>
</div>
*/

.bibly_popup_outer {
/* positioning */
position: absolute;
top: 0;
left: 0;
display: none;

/* size */
width: 250px;

/* style */
text-align:left;
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;

/* gradients */
background: #fff;

/* border radius */
border: solid 1px #333;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;

/* shadow */
-webkit-box-shadow: 0 1px 5px rgba(50,50,50,0.5);
-moz-box-shadow: 0 1px 5px rgba(50,50,50,0.5);
box-shadow: 0 1px 5px rgba(50,50,50,0.5);
}
.bibly_popup_header {
background: #ccc;
padding: 4px 10px;
font-weight: bold;
}
.bibly_popup_content {
padding: 10px;
min-height: 40px;

line-height: 1.4em;
}
.bibly_popup_footer {
padding: 5px 10px;
font-size: 8px;
color: #666;
}
.bibly_popup_footer a {
color: #666;
text-decoration: underline;
}
.bibly_popup_arrow {
position: absolute;
bottom: -9px;
left: 115px;

width: 1px;
height: 1px;

border: solid 30px #ffffff;
border-width: 10px 15px 0 15px;
border-color: #ffffff transparent transparent transparent;
}
.bibly_popup_arrowborder{
position: absolute;
bottom: -10px;
left: 115px;

width: 1px;
height: 1px;

border: solid 30px #000000;
border-width: 10px 15px 0 15px;
border-color: #000000 transparent transparent transparent;
}

.bibly_popup_content p {
display: inline;
}
.bibly_popup_content a {
display: none;
}
.bibly_popup_content p:first-child {
display: none;
}

.bibly_verse_number, .bibly_popup_content sup {
font-size: 9px;
color: #666;
top: -3px;
vertical-align: baseline;
position: relative;
margin-right: 2px;
}
Loading

0 comments on commit 85f7671

Please sign in to comment.