PDF rausgenommen
This commit is contained in:
@ -0,0 +1,77 @@
|
||||
/* ====================================================================================================================
|
||||
* BASE STYLES
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
.flexslider {
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
.slides {
|
||||
|
||||
> li {
|
||||
|
||||
display: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
|
||||
}
|
||||
|
||||
img{
|
||||
|
||||
width: 100%;
|
||||
display: block;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Clearfix for the .slides element
|
||||
//
|
||||
|
||||
&:after{
|
||||
|
||||
content: "\0020";
|
||||
display: block;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
line-height: 0;
|
||||
height: 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
html[xmlns] &{
|
||||
|
||||
display: block;
|
||||
|
||||
}
|
||||
|
||||
* html &{
|
||||
|
||||
height: 1%;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
//
|
||||
// No JavaScript Fallback
|
||||
// If you are not using another script, such as Modernizr, make sure you
|
||||
// include js that eliminates this class on page load
|
||||
//
|
||||
|
||||
|
||||
.no-js &{
|
||||
|
||||
> li{
|
||||
|
||||
&:first-child{
|
||||
|
||||
display: block;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
/* ====================================================================================================================
|
||||
* FONT-FACE
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
@font-face {
|
||||
|
||||
font-family: '@{font-name}';
|
||||
src:url('@{font-path}/@{font-file-name}.eot');
|
||||
src:url('@{font-path}/@{font-file-name}.eot?#iefix') format('embedded-opentype'),
|
||||
url('@{font-path}/@{font-file-name}.woff') format('woff'),
|
||||
url('@{font-path}/@{font-file-name}.ttf') format('truetype'),
|
||||
url('@{font-path}/@{font-file-name}.svg#flexslider-icon') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
//
|
||||
// Transition
|
||||
//
|
||||
|
||||
.transition( @duration: @default-duration, @easing: @default-easing ) {
|
||||
|
||||
-webkit-transition: all @duration @easing;
|
||||
-moz-transition: all @duration @easing;
|
||||
-ms-transition: all @duration @easing;
|
||||
-o-transition: all @duration @easing;
|
||||
transition: all @duration @easing;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Border-radius
|
||||
//
|
||||
|
||||
.border-radius( @radius: @default-border-radius ){
|
||||
|
||||
-webkit-border-radius: @arguments;
|
||||
-moz-border-radius: @arguments;
|
||||
border-radius: @arguments;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Box-shadow
|
||||
//
|
||||
|
||||
.box-shadow( @x-axis: @default-box-shadow-x-axis, @y-axis: @default-box-shadow-y-axis, @blur: @default-box-shadow-blur, @color: @default-box-shadow-color, @inset: @default-box-shadow-inset ) {
|
||||
|
||||
-webkit-box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
-moz-box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
-o-box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
/* ====================================================================================================================
|
||||
* RESETS
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
.flex-container,
|
||||
.flex-slider {
|
||||
|
||||
a:hover,
|
||||
a:focus {
|
||||
|
||||
outline: none;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.slides,
|
||||
.slides > li,
|
||||
.flex-control-nav,
|
||||
.flex-direction-nav {
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
|
||||
}
|
||||
|
||||
.flex-pauseplay span {
|
||||
|
||||
text-transform: capitalize;
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
/* ====================================================================================================================
|
||||
* RESPONSIVE
|
||||
* ====================================================================================================================*/
|
||||
|
||||
@media screen and ( max-width: 860px ) {
|
||||
|
||||
.flex-direction-nav {
|
||||
|
||||
.flex-prev {
|
||||
|
||||
opacity: 1;
|
||||
left: 10px;
|
||||
|
||||
}
|
||||
|
||||
.flex-next {
|
||||
|
||||
opacity: 1;
|
||||
right: 10px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,306 @@
|
||||
/* ====================================================================================================================
|
||||
* DEFAULT THEME
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
.flexslider {
|
||||
|
||||
margin: @flexslider-margin;
|
||||
background: @flexslider-bg;
|
||||
border: @flexslider-border;
|
||||
position: relative;
|
||||
zoom: 1;
|
||||
|
||||
.border-radius( @flexslider-border-radius );
|
||||
.box-shadow( @flexslider-box-shadow-x-axis, @flexslider-box-shadow-y-axis, @flexslider-box-shadow-blur, @flexslider-box-shadow-color, @flexslider-box-shadow-inset);
|
||||
|
||||
.slides {
|
||||
|
||||
zoom: 1;
|
||||
|
||||
img {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.flex-viewport {
|
||||
|
||||
max-height: @flex-viewport-max-height;
|
||||
|
||||
.transition();
|
||||
|
||||
.loading &{
|
||||
|
||||
max-height: @flex-viewport-loading-max-height;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.carousel li {
|
||||
|
||||
margin-right: 5px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Direction Nav
|
||||
//
|
||||
|
||||
.flex-direction-nav {
|
||||
|
||||
*height: 0;
|
||||
|
||||
|
||||
//
|
||||
// Global styles
|
||||
//
|
||||
|
||||
a {
|
||||
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: -20px 0 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
z-index: 10;
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
color: @flex-direction-nav-color;
|
||||
text-shadow: @flex-direction-nav-text-shadow;
|
||||
|
||||
.transition( 0.3s, ease-in-out );
|
||||
|
||||
&:before {
|
||||
|
||||
font-family: "@{font-name}";
|
||||
font-size: 40px;
|
||||
display: inline-block;
|
||||
content: @flex-direction-nav-icon-prev;
|
||||
color: @flex-direction-nav-icon-color;
|
||||
text-shadow: @flex-direction-nav-icon-text-shadow;
|
||||
|
||||
}
|
||||
|
||||
&.flex-next:before {
|
||||
|
||||
content: @flex-direction-nav-icon-next;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Prev
|
||||
//
|
||||
|
||||
.flex-prev {
|
||||
|
||||
left: -50px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Next
|
||||
//
|
||||
|
||||
.flex-next {
|
||||
|
||||
right: -50px;
|
||||
text-align: right;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Hover states
|
||||
//
|
||||
|
||||
.flexslider:hover &{
|
||||
|
||||
.flex-prev {
|
||||
|
||||
opacity: 0.7;
|
||||
left: 10px;
|
||||
|
||||
&:hover{
|
||||
|
||||
opacity: 1;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.flex-next {
|
||||
|
||||
opacity: 0.7;
|
||||
right: 10px;
|
||||
|
||||
&:hover{
|
||||
|
||||
opacity: 1;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Disabled
|
||||
//
|
||||
|
||||
.flex-disabled {
|
||||
|
||||
opacity: 0!important;
|
||||
filter: alpha(opacity=0);
|
||||
cursor: default;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Pause/Play
|
||||
//
|
||||
|
||||
.flex-pauseplay a {
|
||||
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
left: 10px;
|
||||
opacity: 0.8;
|
||||
z-index: 10;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
color: #000;
|
||||
|
||||
&:before {
|
||||
|
||||
font-family: "@{font-name}";
|
||||
font-size: 20px;
|
||||
display: inline-block;
|
||||
content: @flex-pauseplay-icon-pause;
|
||||
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
||||
opacity: 1;
|
||||
|
||||
}
|
||||
|
||||
&.flex-play:before {
|
||||
|
||||
content: @flex-pauseplay-icon-play;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Control Nav
|
||||
//
|
||||
|
||||
.flex-control-nav {
|
||||
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: -40px;
|
||||
text-align: center;
|
||||
|
||||
li {
|
||||
|
||||
margin: 0 6px;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Control paging
|
||||
//
|
||||
|
||||
.flex-control-paging li {
|
||||
|
||||
a {
|
||||
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
display: block;
|
||||
background: #666;
|
||||
background: rgba(0,0,0,0.5);
|
||||
cursor: pointer;
|
||||
text-indent: -9999px;
|
||||
|
||||
.box-shadow( 0, 0, 3px, rgba(0,0,0,0.3), inset );
|
||||
.border-radius( 20px );
|
||||
|
||||
&:hover {
|
||||
|
||||
background: #333;
|
||||
background: rgba(0,0,0,0.7);
|
||||
|
||||
}
|
||||
|
||||
&.flex-active {
|
||||
|
||||
background: #000;
|
||||
background: rgba( 0, 0, 0, 0.9 );
|
||||
cursor: default;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.flex-control-thumbs {
|
||||
|
||||
margin: @flex-control-thumbs;
|
||||
position: static;
|
||||
overflow: hidden;
|
||||
|
||||
li {
|
||||
|
||||
width: 25%;
|
||||
float: left;
|
||||
margin: 0;
|
||||
|
||||
}
|
||||
|
||||
img {
|
||||
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
opacity: .7;
|
||||
cursor: pointer;
|
||||
|
||||
.transition();
|
||||
|
||||
&:hover {opacity: 1;}
|
||||
|
||||
}
|
||||
|
||||
.flex-active {
|
||||
|
||||
opacity: 1;
|
||||
cursor: default;
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
@font-path: "fonts";
|
||||
@font-name: "flexslider-icon";
|
||||
@font-file-name: "flexslider-icon";
|
||||
@default-duration: 1s;
|
||||
@default-easing: ease;
|
||||
@default-border-radius: 5px;
|
||||
@default-box-shadow-x-axis: 0;
|
||||
@default-box-shadow-y-axis: 1px;
|
||||
@default-box-shadow-blur: 2px;
|
||||
@default-box-shadow-color: rgba( 0, 0, 0, 0.2 );
|
||||
@default-box-shadow-inset: '';
|
||||
@flexslider-margin: 0 0 60px;
|
||||
@flexslider-bg: #fff;
|
||||
@flexslider-border: 4px solid #fff;
|
||||
@flexslider-border-radius: 4px;
|
||||
@flexslider-box-shadow-x-axis: 0;
|
||||
@flexslider-box-shadow-y-axis: 1px;
|
||||
@flexslider-box-shadow-blur: 4px;
|
||||
@flexslider-box-shadow-color: rgba( 0, 0, 0, 0.2 );
|
||||
@flexslider-box-shadow-inset: '';
|
||||
@flex-viewport-max-height: 2000px;
|
||||
@flex-viewport-loading-max-height: 300px;
|
||||
@flex-control-thumbs: 5px 0 0;
|
||||
@flex-direction-nav-color: rgba(0,0,0,0.8);
|
||||
@flex-direction-nav-text-shadow: 1px 1px 0 rgba( 255, 255, 255, 0.3 );
|
||||
@flex-direction-nav-icon-color: rgba(0,0,0,0.8);
|
||||
@flex-direction-nav-icon-text-shadow: 1px 1px 0 rgba( 255, 255, 255, 0.3 );
|
||||
@flex-direction-nav-icon-prev: '\f001';
|
||||
@flex-direction-nav-icon-next: '\f002';
|
||||
@flex-pauseplay-icon-play: '\f003';
|
||||
@flex-pauseplay-icon-pause: '\f004';
|
Reference in New Issue
Block a user