Compare commits

...

3 commits

Author SHA1 Message Date
Hippo
a6f6fa6ecb Add Geany project files to .gitignore 2019-08-22 18:22:08 +05:30
Hippo
01d0fad9dd Disable "dashed-line on hover" for single-post pages 2019-08-22 18:17:49 +05:30
Hippo
7f738bf974 Add "dashed-line" styling to full post list 2019-08-04 16:04:25 +05:30
2 changed files with 15 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
.idea/
*.geany

View file

@ -100,6 +100,20 @@ figure {
background-position: center;
}
/* Article list customisation */
article.post:hover {
border: 0.2em dashed lightgrey;
}
article.post {
border: 0.2em dashed rgba(0,0,0,0);
padding: 0.5em;
}
/* Don't put dotted lines for single articles */
.single article.post:hover {
border: 0.2em dashed rgba(0,0,0,0);
}
/* Image Grid */
/* Grid style */
.display-posts-listing.grid {