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

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,17 @@
{
"scripts": {
"watch": "npm-run-all --parallel watch:base watch:marx",
"watch:base": "myth -w css/base.myth.css css/base.css",
"watch:marx": "myth -w css/marx.myth.css css/marx.css"
},
"devDependencies": {
"myth": "^1.5.0",
"npm-run-all": "^1.7.0"
}
}
"scripts": {
"build": "npm-run-all --parallel build:base build:marx",
"build:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -o css/base.css css/base.myth.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",
"watch:base": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/base.css css/base.myth.css",
"watch:marx": "postcss --use autoprefixer --autoprefixer.browsers \"> 5%\" -w -o css/marx.css css/marx.myth.css"
},
"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"
}
}