aboutsummaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authoroxi <74726611+oxi1224@users.noreply.github.com>2022-08-21 15:51:37 +0200
committerGitHub <noreply@github.com>2022-08-21 15:51:37 +0200
commitc901430c30283e0add87329ce5d2116549ea10ee (patch)
tree477717919f5e7bcdd340c0dd06b8e6f1b107717a /styles.css
parent38b23cae69b70d09396960532f923047b995f05f (diff)
downloadexhq.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.css13
1 files changed, 12 insertions, 1 deletions
diff --git a/styles.css b/styles.css
index 9744380..4dbc6e7 100644
--- a/styles.css
+++ b/styles.css
@@ -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