diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-03-26 10:52:25 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-03-26 10:52:25 +0100 |
commit | c19f93e36db24303b77757d5cfe6c9ec2aaee30e (patch) | |
tree | db2a03c7a985ff6d8ed9db2147a48aabf03f36b5 /app/static | |
parent | 4b7bf9d778046c96a0d699700a208cdc0ab6076a (diff) | |
download | cheatdb-c19f93e36db24303b77757d5cfe6c9ec2aaee30e.tar.xz |
Add screenshot support
Fixes #21
Diffstat (limited to 'app/static')
-rw-r--r-- | app/static/style.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/static/style.css b/app/static/style.css index 57d5199..712b045 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -10,6 +10,28 @@ h1 { text-align: center; } +.screenshot_list, .screenshot_list li, .screenshot_list li a { + list-style: none; + margin: 0; + padding: 0; +} + +.screenshot_list li { + display: inline-block; + margin: 5px; + padding: 0; +} + +.screenshot_list li a { + display: block; +} + +.screenshot_list img { + width: 164px; + height: 164px; + object-fit: cover; +} + h2, h3 { margin: 5px 0; |