diff options
| -rwxr-xr-x | public/assets/stylesheets/app.css | 15 | ||||
| -rw-r--r-- | views/projects/list-projects.ejs | 16 |
2 files changed, 15 insertions, 16 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 54060cc..fbe9140 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -327,6 +327,21 @@ iframe.embed { -moz-transition:2s background; transition:2s background; } + +.room .images { + position: absolute; + top: 0; left: 0; + z-index: -1; + width: 100%; + height: 100%; + text-align: center; + overflow: hidden; +} +.room .images img { + max-height: 100%; + max-width: 100%; +} + .page .btn { clear: both; padding: 30px 0; diff --git a/views/projects/list-projects.ejs b/views/projects/list-projects.ejs index c110934..a9f9523 100644 --- a/views/projects/list-projects.ejs +++ b/views/projects/list-projects.ejs @@ -28,19 +28,3 @@ </div> [[ } ]] - -<style> -.room .images { - position: absolute; - top: 0; left: 0; - z-index: -1; - width: 100%; - height: 100%; - text-align: center; - overflow: hidden; -} -.room .images img { - max-height: 100%; - max-width: 100%; -} -</style> |
