Disable selection and open website link on _blank.
This commit is contained in:
parent
d119b3bb21
commit
d16d8c6ce3
|
|
@ -3,6 +3,10 @@ body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: rgb(240, 240, 244);
|
background-color: rgb(240, 240, 244);
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
2021 © <a href="https://johnespiritu.dev">John Espiritu</a>
|
2021 © <a href="https://johnespiritu.dev" target="_blank">John Espiritu</a>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
<script src="app.js"></script>
|
<script src="app.js"></script>
|
||||||
|
|
|
||||||
Reference in New Issue