diff options
| author | ryderr <r@okfoc.us> | 2014-10-24 14:25:39 -0400 |
|---|---|---|
| committer | ryderr <r@okfoc.us> | 2014-10-24 14:25:39 -0400 |
| commit | 30dac4509e28f07bacf29c3be3d58f8fa684b115 (patch) | |
| tree | 7ac9b726e3eafa020f8eae735f63aac6d63771f4 /public/assets/stylesheets | |
| parent | b54fe490581ad00040910a7552f2bf5ae170cc46 (diff) | |
adding video
Diffstat (limited to 'public/assets/stylesheets')
| -rwxr-xr-x | public/assets/stylesheets/app.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 20498c0..4544fa3 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -92,6 +92,40 @@ a{ text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff; } +.videoModal { + position: fixed; + width: 0; + height: 0; + background: rgba(255,255,255,0); + display: table; + opacity:0; + z-index: -1; + -webkit-transition:0.4s background + -moz-transition:0.4s background; + transition:0.4s background; +} + +.videoModal.active { + opacity:1; + z-index: 6; + width: 100%; + height: 100%; + background: rgba(255,255,255,0.9); +} + +.videoModal .ion-ios7-close-empty { + position: absolute; + right: 50px; + top: 60px; + font-size: 80px; + cursor:pointer; + color:#444; +} + +.videoModal .ion-ios7-close-empty:hover { + color:black; +} + #help-button { display: none; border-right:0px!important; |
