diff options
author | oxi <74726611+oxi1224@users.noreply.github.com> | 2022-08-21 16:44:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 16:44:08 +0200 |
commit | 14038b8070979464d512000535fb443d2ae3208e (patch) | |
tree | 5b9c9c3164d3a68facd1d64b560681cc828daa5a | |
parent | ff380e7a48ddb9a5769f9832cc86bf16e85d7307 (diff) | |
download | exhq.github.io-14038b8070979464d512000535fb443d2ae3208e.tar.gz exhq.github.io-14038b8070979464d512000535fb443d2ae3208e.tar.bz2 exhq.github.io-14038b8070979464d512000535fb443d2ae3208e.zip |
ae
-rw-r--r-- | index.html | 4 | ||||
-rw-r--r-- | styles.css | 20 |
2 files changed, 22 insertions, 2 deletions
@@ -92,9 +92,9 @@ /> <span class="notjava">:sOmEOneSAIdRUst: shut the fuck up ÅĠěŜŋżųŹ¢¶Ěá</span> </div> - <div> + <div style="grid-column: span 2;"> <img - class="javaimg" + class="javaimg jsimg" src="https://cdn.discordapp.com/attachments/918571703137894421/999223367750127616/Unofficial_JavaScript_logo_2.svg.png" alt="" /> @@ -275,9 +275,29 @@ html{ 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); } + +.jsimg { + margin-left: 10%; +} + +@media only screen and (max-width: 900px) { + /* .data{ + margin-left: 0 + } */ + .javaimg{ + margin-left: 0; + } + .jsimg { + margin-left: 0; + } +}
\ No newline at end of file |