diff options
author | oxi <74726611+oxi1224@users.noreply.github.com> | 2022-08-21 15:51:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 15:51:37 +0200 |
commit | c901430c30283e0add87329ce5d2116549ea10ee (patch) | |
tree | 477717919f5e7bcdd340c0dd06b8e6f1b107717a /styles.css | |
parent | 38b23cae69b70d09396960532f923047b995f05f (diff) | |
download | exhq.github.io-c901430c30283e0add87329ce5d2116549ea10ee.tar.gz exhq.github.io-c901430c30283e0add87329ce5d2116549ea10ee.tar.bz2 exhq.github.io-c901430c30283e0add87329ce5d2116549ea10ee.zip |
Fix languages you cant program
Diffstat (limited to 'styles.css')
-rw-r--r-- | styles.css | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -31,7 +31,7 @@ html, body{ } .javaimg{ - margin-left: 10%; + margin-left: 20%; width: 50px; height: 50px; vertical-align: middle; @@ -274,3 +274,14 @@ html{ font-weight: 9000; font-size: 120%; } + +/* disable pointer events on images */ +img{ + pointer-events:none; +} + +.languages-wrapper{ + display: grid; + grid-template-columns: repeat(2, 1fr); + grid-template-rows: repeat(3, 1fr); +}
\ No newline at end of file |