-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
4,949 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
Oops, something went wrong.