adds highlight effects

This commit is contained in:
Nye Evans 2022-05-05 20:24:26 +01:00
parent c1a1a121ce
commit 9815fb5fc9
5 changed files with 31 additions and 0 deletions

View file

@ -1,6 +1,7 @@
<HTML>
<head>
<link rel = "stylesheet" href = "stylesheets/mainpage.css">
<link rel = "stylesheet" href = "stylesheets/effects.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">

View file

@ -1,6 +1,7 @@
<HTML>
<head>
<link rel = "stylesheet" href = "../stylesheets/basics.css">
<link rel = "stylesheet" href = "../stylesheets/effects.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">

View file

@ -2,6 +2,7 @@
<head>
<link rel = "stylesheet" href = "../stylesheets/basics.css">
<link rel = "stylesheet" href = "../stylesheets/cv.css">
<link rel = "stylesheet" href = "../stylesheets/effects.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">

View file

@ -1,6 +1,7 @@
<HTML>
<head>
<link rel = "stylesheet" href = "../stylesheets/basics.css">
<link rel = "stylesheet" href = "../stylesheets/effects.css">
<link rel = "stylesheet" href = "../stylesheets/audio.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

27
stylesheets/effects.css Normal file
View file

@ -0,0 +1,27 @@
/*this all does the same thing*/
::selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-moz-selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-o-selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-ms-selection {
background-color: black;
color: rgb(43, 80, 201);
}
::-webkit-selection {
background-color: black;
color: rgb(43, 80, 201);
}