diff --git a/public/assets/css/componentStyle.css b/public/assets/css/componentStyle.css index cfffdd4d..3a89c372 100644 --- a/public/assets/css/componentStyle.css +++ b/public/assets/css/componentStyle.css @@ -1,7 +1,7 @@ /* top bar */ #logo, #title { - display: inline-block; + float: left; } #logo { @@ -12,9 +12,18 @@ margin: 2px 5px 2px 5px; } +.top-bar-left { + float: left; +} + +.top-bar-tagline { + font-style: italic; + color: grey; +} + .top-bar-right { - float: right; - margin-left: 1em; + vertical-align: text-bottom; + margin-left: 0.5em; } /* publish */ diff --git a/public/assets/css/generalStyle.css b/public/assets/css/generalStyle.css index 8ab093a3..c71a3783 100644 --- a/public/assets/css/generalStyle.css +++ b/public/assets/css/generalStyle.css @@ -10,6 +10,14 @@ padding-bottom: 2px; border-bottom: 1px lightgrey solid; margin-top: 2em; + overflow: auto; + text-align: right; + display: inline-block; + vertical-align: text-bottom; +} + +.full { + clear: both; } .main { diff --git a/public/assets/js/publishFunctions.js b/public/assets/js/publishFunctions.js index 07f9e12c..4ccd8dca 100644 --- a/public/assets/js/publishFunctions.js +++ b/public/assets/js/publishFunctions.js @@ -12,13 +12,13 @@ function validateFile(file) { case 'image/jpeg': case 'image/png': case 'image/gif': - if (file.size > 5000000){ - throw new Error('Sorry, images are limitted to 5 megabytes.'); + if (file.size > 10000000){ + throw new Error('Sorry, images are limited to 10 megabytes.'); } break; case 'video/mp4': if (file.size > 50000000){ - throw new Error('Sorry, videos are limitted to 50 megabytes.'); + throw new Error('Sorry, videos are limited to 50 megabytes.'); } break; default: diff --git a/views/partials/topBar.handlebars b/views/partials/topBar.handlebars index 4b9ee5ea..e367d76b 100644 --- a/views/partials/topBar.handlebars +++ b/views/partials/topBar.handlebars @@ -1,6 +1,9 @@
\ No newline at end of file