adds highlight effects
This commit is contained in:
parent
c1a1a121ce
commit
9815fb5fc9
5 changed files with 31 additions and 0 deletions
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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
27
stylesheets/effects.css
Normal 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);
|
||||
}
|
Loading…
Add table
Reference in a new issue