diff --git a/index.html b/index.html index 4a77784..5a0033c 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,7 @@ + diff --git a/pages/about-me.html b/pages/about-me.html index a58ea67..58290b4 100644 --- a/pages/about-me.html +++ b/pages/about-me.html @@ -1,6 +1,7 @@ + diff --git a/pages/cv.html b/pages/cv.html index 1e42d9a..cb7949e 100644 --- a/pages/cv.html +++ b/pages/cv.html @@ -2,6 +2,7 @@ + diff --git a/pages/my-work.html b/pages/my-work.html index a36d4ff..49ab9d9 100644 --- a/pages/my-work.html +++ b/pages/my-work.html @@ -1,6 +1,7 @@ + diff --git a/stylesheets/effects.css b/stylesheets/effects.css new file mode 100644 index 0000000..9f7182f --- /dev/null +++ b/stylesheets/effects.css @@ -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); +}