forked from codrops/GammaGallery
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit ce006fd
Showing
27 changed files
with
2,679 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
GammaGallery | ||
========= | ||
|
||
Gamma Gallery is an experimental responsive image gallery that attempts to provide an adjustable responsive images approach taking its grid layout and the full slideshow view into account. | ||
|
||
[article on Codrops](http://tympanus.net/codrops/?p=11836) | ||
|
||
[demo](http://tympanus.net/Development/GammaGallery/) | ||
|
||
Licensed under the MIT License |
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,6 @@ | ||
Created by Codrops | ||
|
||
Licensed under the MIT license. | ||
http://www.opensource.org/licenses/mit-license.php | ||
|
||
Please read more about our license concerning demos, tutorials and articles: http://tympanus.net/codrops/licensing/ |
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,164 @@ | ||
/* General Demo Style */ | ||
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); | ||
|
||
html { height: 100%; } | ||
|
||
* { | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */ | ||
.clearfix:before, | ||
.clearfix:after { | ||
content: " "; | ||
display: table; | ||
} | ||
|
||
.clearfix:after { | ||
clear: both; | ||
} | ||
|
||
body { | ||
font-family: 'Lato', Calibri, Arial, sans-serif; | ||
background: #fff; | ||
font-weight: 300; | ||
font-size: 15px; | ||
color: #333; | ||
-webkit-font-smoothing: antialiased; | ||
overflow-y: scroll; | ||
overflow-x: hidden; | ||
} | ||
|
||
a { | ||
color: #555; | ||
text-decoration: none; | ||
} | ||
|
||
.container { | ||
width: 100%; | ||
position: relative; | ||
} | ||
|
||
.main { | ||
padding: 30px 20px 100px 20px; | ||
max-width: 1580px; | ||
margin: 0 auto; | ||
} | ||
|
||
.main > header { | ||
padding: 0 10px 30px; | ||
} | ||
|
||
.main > header h1 { | ||
font-size: 34px; | ||
line-height: 38px; | ||
margin: 0; | ||
font-weight: 700; | ||
color: #333; | ||
float: left; | ||
} | ||
|
||
.main > header h1 span { | ||
display: block; | ||
font-size: 20px; | ||
font-weight: 300; | ||
} | ||
|
||
.main h2 { | ||
font-size: 38px; | ||
font-weight: 300; | ||
text-shadow: 0 1px 0 rgba(255,255,255,0.9); | ||
padding: 10px 0 0 0; | ||
margin-bottom: 20px; | ||
border-top: 1px solid #f7f7f7; | ||
} | ||
|
||
/* Header Style */ | ||
.codrops-top { | ||
line-height: 24px; | ||
font-size: 11px; | ||
background: #fff; | ||
background: rgba(255, 255, 255, 0.5); | ||
text-transform: uppercase; | ||
z-index: 9999; | ||
position: relative; | ||
box-shadow: 1px 0px 2px rgba(0,0,0,0.2); | ||
} | ||
|
||
.codrops-top a { | ||
padding: 0px 10px; | ||
letter-spacing: 1px; | ||
color: #333; | ||
text-shadow: 0 -1px 0 #fff; | ||
display: inline-block; | ||
} | ||
|
||
.codrops-top a:hover { | ||
background: rgba(255,255,255,0.8); | ||
color: #000; | ||
} | ||
|
||
.codrops-top span.right { | ||
float: right; | ||
} | ||
|
||
.codrops-top span.right a { | ||
float: left; | ||
display: block; | ||
} | ||
|
||
/* Demo Buttons Style */ | ||
.codrops-demos { | ||
float: right; | ||
padding-top: 10px; | ||
} | ||
|
||
.codrops-demos a { | ||
display: inline-block; | ||
margin: 10px; | ||
color: #666; | ||
font-weight: 700; | ||
line-height: 30px; | ||
border-bottom: 4px solid transparent; | ||
} | ||
|
||
.codrops-demos a:hover { | ||
color: #000; | ||
border-color: #000; | ||
} | ||
|
||
.codrops-demos a.current-demo, | ||
.codrops-demos a.current-demo:hover { | ||
color: #aaa; | ||
border-color: #aaa; | ||
} | ||
|
||
.support-note span{ | ||
color: #ac375d; | ||
font-size: 16px; | ||
display: none; | ||
font-weight: bold; | ||
text-align: center; | ||
padding: 5px 0; | ||
} | ||
|
||
.loadmore { | ||
padding: 10px; | ||
background: #ddd; | ||
color: #fff; | ||
text-transform: uppercase; | ||
letter-spacing: 3px; | ||
font-weight: 700; | ||
text-align: center; | ||
cursor: pointer; | ||
margin: 10px 4px; | ||
display: none; | ||
} | ||
|
||
.loadmore:hover { | ||
background: #333; | ||
} |
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,3 @@ | ||
.gamma-loading { | ||
background-image: none; | ||
} |
Oops, something went wrong.