Beautifully crafted timelines that are easy and intuitive to use. http://timeline.knightlab.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.7 KiB
92 lines
1.7 KiB
13 years ago
|
/*
|
||
|
Timeline
|
||
|
Theme: Dark
|
||
|
Copyright 2012 Zach Wise
|
||
|
Designed and built by Zach Wise digitalartwork.net
|
||
|
----------------------------------------------------- */
|
||
13 years ago
|
|
||
|
// CSS Reset
|
||
13 years ago
|
@import "Reset.less";
|
||
13 years ago
|
|
||
|
// Core variables and mixins
|
||
13 years ago
|
@import "Font.Default.less";
|
||
|
@import "Variables.less";
|
||
|
@import "Mixins.less";
|
||
|
@import "GFX.less";
|
||
13 years ago
|
|
||
|
// Grid system and page structure
|
||
13 years ago
|
@import "VMM.Timeline.Core.less";
|
||
|
@import "VMM.Slider.less";
|
||
|
@import "VMM.Timeline.TimeNav.less";
|
||
13 years ago
|
|
||
|
// Typography
|
||
13 years ago
|
@import "Typography.less";
|
||
13 years ago
|
|
||
|
|
||
13 years ago
|
// Grid system and page structure
|
||
13 years ago
|
@import "VMM.Timeline.Tooltip.less";
|
||
13 years ago
|
|
||
|
/* MEDIA QUERIES
|
||
|
================================================== */
|
||
|
|
||
|
/* Mobile and iPhone
|
||
|
================================================== */
|
||
|
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
|
||
|
|
||
|
}
|
||
|
|
||
|
/* BELOW 600px
|
||
|
================================================== */
|
||
|
|
||
|
@media (max-width: 600px) {
|
||
|
.slider {
|
||
|
.slider-item {
|
||
|
.content {
|
||
|
.content-container {
|
||
|
display:block;
|
||
|
.text {
|
||
|
width:100%;
|
||
|
max-width:100%;
|
||
|
min-width:120px;
|
||
|
display:block;
|
||
|
.container {
|
||
|
display:block;
|
||
|
}
|
||
|
}
|
||
|
.media {
|
||
|
width:100%;
|
||
|
min-width:50%;
|
||
|
float: none;
|
||
|
.media-wrapper {
|
||
|
margin-left:0px;
|
||
|
margin-right:0px;
|
||
|
width:100%;
|
||
|
display:block;
|
||
|
.media-container {
|
||
|
img, iframe {
|
||
|
width:100%;
|
||
|
//max-height:350px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.media.text-media {
|
||
|
.media-wrapper {
|
||
|
.media-container {
|
||
|
border: none;
|
||
|
background-color: @white;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
.content-container.layout-text {
|
||
|
|
||
|
}
|
||
|
.content-container.layout-media {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
13 years ago
|
|
||
13 years ago
|
}
|