Update css to fit blocks within poster images

This commit is contained in:
Timothy Warren 2017-01-04 13:40:46 -05:00
parent f1893d9708
commit 444e18c1d9
4 changed files with 842 additions and 959 deletions

File diff suppressed because it is too large Load Diff

View File

@ -296,7 +296,7 @@ a:hover, a:active {
display:inline-block; display:inline-block;
text-align:center; text-align:center;
width:220px; width:220px;
height:319px; height:311px;
margin: var(--normal-padding); margin: var(--normal-padding);
} }
@ -427,8 +427,7 @@ a:hover, a:active {
.manga .media { .manga .media {
border:1px solid #ddd; border:1px solid #ddd;
width:200px; height:310px;
height:290px;
margin:0.25em; margin:0.25em;
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,17 @@
{ {
"scripts": { "scripts": {
"watch": "npm-run-all --parallel watch:base watch:marx", "build": "npm-run-all --parallel build:base build:marx",
"watch:base": "myth -w css/base.myth.css css/base.css", "build:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/base.css css/base.myth.css",
"watch:marx": "myth -w css/marx.myth.css css/marx.css" "build:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/marx.css css/marx.myth.css",
}, "watch": "npm-run-all --parallel watch:base watch:marx",
"devDependencies": { "watch:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/base.css css/base.myth.css",
"myth": "^1.5.0", "watch:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/marx.css css/marx.myth.css"
"npm-run-all": "^1.7.0" },
} "devDependencies": {
} "autoprefixer": "^6.6.1",
"npm-run-all": "^4.0.0",
"postcss-cachify": "^1.3.1",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.9.0"
}
}