* production deploy

* page font size changes
* article side separator height
* tablet view inline image float
This commit is contained in:
Danyi Dávid 2018-05-06 21:20:05 +02:00
parent 460efff899
commit de88d599af
3 changed files with 15 additions and 12 deletions

View File

@ -30,6 +30,12 @@ host('alfheim')
->set('php_service_name', 'php7.2-fpm') ->set('php_service_name', 'php7.2-fpm')
->set('deploy_path', '/mnt/apps/granprize'); ->set('deploy_path', '/mnt/apps/granprize');
host('granprize')
->stage('production')
->user('vcreatives')
->forwardAgent()
->set('php_service_name', 'php7.2-fpm')
->set('deploy_path', '/var/www/granprize.swedishchamber.hu');
desc('Reload PHP-FPM service'); desc('Reload PHP-FPM service');
task('php-fpm:reload', function () { task('php-fpm:reload', function () {

View File

@ -29,7 +29,8 @@ header a:hover {
article, article,
section { section {
font-family: 'Raleway', sans-serif; font-family: 'Raleway', sans-serif;
font-size: 16pt; font-size: 12pt;
font-weight: 500;
} }
/* app main grid container */ /* app main grid container */
@ -58,6 +59,7 @@ section.article {
display: grid; display: grid;
grid-column-gap: 20px; grid-column-gap: 20px;
grid-row-gap: 20px; grid-row-gap: 20px;
align-self: start;
} }
section.error { section.error {
@ -255,11 +257,11 @@ footer .ericsson-logo {
img.embedded-image { img.embedded-image {
max-width: 50%; max-width: 50%;
float: right
} }
img.embedded-image.keep-small-right { img.embedded-image.keep-small-right {
max-width: 30%; max-width: 30%;
float: right;
} }
section.judge { section.judge {
@ -447,11 +449,6 @@ section.profile {
grid-row-gap: 20px; grid-row-gap: 20px;
} }
section.profile > article {
border-left: 1px solid #003b70;
padding: 0 10px 0 10px;
}
section.profile > aside.sidebar > img { section.profile > aside.sidebar > img {
max-width: 100%; max-width: 100%;
display: block; display: block;
@ -538,8 +535,8 @@ nav li > ul {
nav > ul > li { nav > ul > li {
padding-left: 5px; padding-left: 5px;
font-weight: 700; font-weight: 700;
font-size: 22pt; font-size: 16pt;
line-height: 28pt; line-height: 18pt;
} }
nav > ul > li.current { nav > ul > li.current {
@ -557,8 +554,8 @@ nav ul.menu_level_1 {
} }
nav ul.menu_level_1 > li { nav ul.menu_level_1 > li {
font-size: 14pt; font-size: 12pt;
line-height: 18pt; line-height: 16pt;
padding-left: 15px; padding-left: 15px;
margin-bottom: 10px; margin-bottom: 10px;
} }

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"/>
<title><?= $this->e($title) ?> - Swedish Chamber</title> <title><?= $this->e($title) ?> - Swedish Chamber</title>
<link rel="shortcut icon" href="https://framework.zend.com/ico/favicon.ico"/> <link rel="shortcut icon" href="https://framework.zend.com/ico/favicon.ico"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Serif:700|Raleway:500"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Serif:400,700|Raleway:400,500,700">
<link rel="stylesheet" href="<?= $this->serverurl('/styles/normalize.css') ?>"/> <link rel="stylesheet" href="<?= $this->serverurl('/styles/normalize.css') ?>"/>
<link rel="stylesheet" href="<?= $this->serverurl('/styles/main.css') ?>"/> <link rel="stylesheet" href="<?= $this->serverurl('/styles/main.css') ?>"/>
<?= $this->section('stylesheets') ?> <?= $this->section('stylesheets') ?>