diff options
Diffstat (limited to 'site/public')
| -rw-r--r-- | site/public/assets/javascripts/_env.js | 1 | ||||
| -rw-r--r-- | site/public/assets/style.css | 63 |
2 files changed, 42 insertions, 22 deletions
diff --git a/site/public/assets/javascripts/_env.js b/site/public/assets/javascripts/_env.js index e1d032a..345e94b 100644 --- a/site/public/assets/javascripts/_env.js +++ b/site/public/assets/javascripts/_env.js @@ -178,7 +178,6 @@ environment.ready = function(){ }, 500) }) - $("#scene_container").click(function(e){ if ( $("body").hasClass("menuActive") ) { return diff --git a/site/public/assets/style.css b/site/public/assets/style.css index 71d8e8f..df5a3fc 100644 --- a/site/public/assets/style.css +++ b/site/public/assets/style.css @@ -732,7 +732,7 @@ nav .sub.active a { float: left; width: 33.33333%; height: 220px; - padding: 10px; + padding: 10px 10px 0 10px; cursor: pointer; opacity: 0.0; font-size: 0.8em; @@ -755,27 +755,48 @@ nav .sub.active a { .done.ready .project { transition-delay: 0; } -.project:nth-child(1) { - transition-delay:0.05s; -} -.project:nth-child(2) { - transition-delay:0.1s; -} -.project:nth-child(3) { - transition-delay:0.15s; -} -.project:nth-child(4) { - transition-delay:0.2s; -} -.project:nth-child(5) { - transition-delay:0.25s; -} -.project:nth-child(6) { - transition-delay:0.3s; +.project span { + position: relative; + top: -19px; + background: white; + opacity: 0; + transition: 0.1s opacity ease-in; + display: block; + text-overflow: ellipsis; } -.project:nth-child(7) { - transition-delay:0.35s; +.project:hover span { + opacity: 1; } +.project:nth-child(1) { transition-delay:0.05s; } +.project:nth-child(2) { transition-delay:0.1s; } +.project:nth-child(3) { transition-delay:0.15s; } +.project:nth-child(4) { transition-delay:0.2s; } +.project:nth-child(5) { transition-delay:0.25s; } +.project:nth-child(6) { transition-delay:0.3s; } +.project:nth-child(7) { transition-delay:0.35s; } +.project:nth-child(8) { transition-delay:0.4s; } +.project:nth-child(9) { transition-delay:0.45s; } +.project:nth-child(10) { transition-delay:0.5s; } +.project:nth-child(11) { transition-delay:0.55s; } +.project:nth-child(12) { transition-delay:0.6s; } +.project:nth-child(13) { transition-delay:0.65s; } +.project:nth-child(14) { transition-delay:0.7s; } +.project:nth-child(15) { transition-delay:0.75s; } +.project:nth-child(16) { transition-delay:0.8s; } +.project:nth-child(17) { transition-delay:0.85s; } +.project:nth-child(18) { transition-delay:0.9s; } +.project:nth-child(19) { transition-delay:0.95s; } +.project:nth-child(20) { transition-delay:1.00s; } +.project:nth-child(21) { transition-delay:1.05s; } +.project:nth-child(22) { transition-delay:1.1s; } +.project:nth-child(23) { transition-delay:1.15s; } +.project:nth-child(24) { transition-delay:1.2s; } +.project:nth-child(25) { transition-delay:1.25s; } +.project:nth-child(26) { transition-delay:1.3s; } +.project:nth-child(27) { transition-delay:1.35s; } +.project:nth-child(28) { transition-delay:1.4s; } +.project:nth-child(29) { transition-delay:1.45s; } +.project:nth-child(30) { transition-delay:1.50s; } #entry_container.visible { top: 0%; @@ -884,4 +905,4 @@ nav .sub.active a { .mobile .play { pointer-events: none; opacity: 1; -}
\ No newline at end of file +} |
