Last active
August 29, 2015 14:01
-
-
Save 01-Scripts/ede65f4ff6a182fa320f to your computer and use it in GitHub Desktop.
Neuer CSS-Code bei Update des 01-Artikelsystems auf Version 3.2.0
This file contains hidden or 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
// Folgende zusaetzliche CSS-Eigenschaften muessen ggf. in eine externe CSS-Datei eingefuegt werden: | |
/* SLIMBOX */ | |
#lbOverlay { | |
position: fixed; | |
z-index: 9999; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
background-color: #000; /* Overlay-Hintergrundfarbe der Lightbox-Abdunklung */ | |
cursor: pointer; | |
} | |
#lbCenter, #lbBottomContainer { | |
position: absolute; | |
z-index: 9999; | |
overflow: hidden; | |
background-color: #fff; /* Hintergrundfarbe des Untertitel-Bereichs */ | |
} | |
#lbImage { | |
position: absolute; | |
left: 0; | |
top: 0; | |
border: 10px solid #fff; /* Bildrahmenfarbe um das in der Lightbox geöffnete Bild herum */ | |
background-repeat: no-repeat; | |
} | |
#lbPrevLink, #lbNextLink { | |
display: block; | |
position: absolute; | |
top: 0; | |
width: 50%; | |
outline: none; | |
} | |
#lbPrevLink { | |
left: 0; | |
} | |
#lbNextLink { | |
right: 0; | |
} | |
/* Untertitel-Textdefinition */ | |
#lbBottom { | |
font-family: Verdana, Arial, Geneva, Helvetica, sans-serif; | |
font-size: 10px; | |
color: #666; | |
line-height: 1.4em; | |
text-align: left; | |
border: 10px solid #fff; | |
border-top-style: none; | |
} | |
#lbCloseLink { | |
display: block; | |
float: right; | |
width: 66px; | |
height: 22px; | |
margin: 5px 0; | |
outline: none; | |
} | |
#lbCaption, #lbNumber { | |
margin-right: 71px; | |
} | |
#lbCaption { | |
font-weight: bold; | |
} | |
.thumbnail_art2gal{ | |
float: left; | |
width: 100px; /* Thumbnail-Breite */ | |
border: 1px solid #999; | |
margin: 0 10px 10px 0; /* Abstand zwischen den einzelnen Thumbnails */ | |
padding: 5px; /* Abstand zwischen Bild und Rand */ | |
} | |
/* div um die Thumbnails innerhalb von Artikeln */ | |
div.cssgallery_art2gal {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment