From edb3beaf5024487a7e1fd244b4e04328ac94c5b9 Mon Sep 17 00:00:00 2001 From: mich41v4294 Date: Sun, 13 Nov 2022 12:56:32 +0100 Subject: [PATCH 1/5] added itch.io --- css/brands-extended.css | 10 ++++++++++ images/icons-extended/itchio.svg | 1 + preview.html | 5 +++++ 3 files changed, 16 insertions(+) create mode 100644 images/icons-extended/itchio.svg diff --git a/css/brands-extended.css b/css/brands-extended.css index 2935a6a..4addbf2 100644 --- a/css/brands-extended.css +++ b/css/brands-extended.css @@ -154,6 +154,16 @@ button:hover, filter: brightness(90%); } +/* itch.io */ +.button.button-itchio { + color: #000000; + background-color: #dd4a4a; +} +.button.button-itchio:hover, +.button.button-itchio:focus { + filter: brightness(90%); +} + /* Micro.blog */ .button.button-microblog { color: #FFFFFF; diff --git a/images/icons-extended/itchio.svg b/images/icons-extended/itchio.svg new file mode 100644 index 0000000..4a4ac25 --- /dev/null +++ b/images/icons-extended/itchio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/preview.html b/preview.html index 9f55826..09198ae 100644 --- a/preview.html +++ b/preview.html @@ -132,6 +132,11 @@ HackerRank LogoHackerRank
+ + + itchio Logoitch.io +
+ MicroBlog LogoMicroBlog From 7e4e626fb631b910754b5684e8e2de52909c79b6 Mon Sep 17 00:00:00 2001 From: mich41v4294 Date: Sun, 13 Nov 2022 12:58:57 +0100 Subject: [PATCH 2/5] fixed paths to icons --- preview.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/preview.html b/preview.html index 09198ae..4054864 100644 --- a/preview.html +++ b/preview.html @@ -101,7 +101,6 @@ 500px Logo500px
- Behance LogoBehance @@ -109,7 +108,7 @@ - Codepen LogoCodepen + Codepen LogoCodepen
@@ -119,23 +118,23 @@ - Distiller LogoDistiller + Distiller LogoDistiller
- - - HackerRank LogoHackerEarth -
+ + + HackerRank LogoHackerEarth +
- HackerRank LogoHackerRank + HackerRank LogoHackerRank
itchio Logoitch.io -
+
@@ -149,7 +148,7 @@ - osu! Logoosu! + osu! Logoosu!
From 26e9b3dc4a12dac14ac60aa2e062b6562e779fe9 Mon Sep 17 00:00:00 2001 From: mich41v4294 Date: Sun, 13 Nov 2022 13:10:22 +0100 Subject: [PATCH 3/5] 6digit color codes for better chrome support --- css/brands-extended.css | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/css/brands-extended.css b/css/brands-extended.css index 4addbf2..73da5dc 100644 --- a/css/brands-extended.css +++ b/css/brands-extended.css @@ -47,17 +47,17 @@ button { } button:hover, .button:focus { - color: #333; - border-color: #888; + color: #333333; + border-color: #888888; outline: 0; } .button.button-primary { - color: #fff; + color: #ffffff; filter: brightness(90%); } .button.button-primary:hover, .button.button-primary:focus { - color: #fff; + color: #ffffff; filter: brightness(90%); } @@ -86,8 +86,8 @@ button:hover, /* 500px */ .button.button-500px { - color: #000; - background-color: #ffff; + color: #000000; + background-color: #ffffff; } .button.button-500px:hover, .button.button-500px:focus { @@ -97,7 +97,7 @@ button:hover, /* Behance */ .button.button-behance { color: #1769ff; - background-color: #ffff; + background-color: #ffffff; } .button.button-behance:hover, .button.button-behance:focus { @@ -106,8 +106,8 @@ button:hover, /* Codepen */ .button.button-codepen { - color: #0000; - background-color: #ffff; + color: #000000; + background-color: #ffffff; } .button.button-codepen:hover, .button.button-codepen:focus { @@ -136,7 +136,7 @@ button:hover, /* Hackerearth */ .button.button-hackerearth { - color: #fff; + color: #ffffff; background-color: #2b3352; } .button.button-hackerearth:hover, @@ -146,8 +146,8 @@ button:hover, /* Hackerrank */ .button.button-hackerrank { - color: #0000; - background-color: #ffff; + color: #000000; + background-color: #ffffff; } .button.button-hackerrank:hover, .button.button-hackerrank:focus { @@ -175,7 +175,7 @@ button:hover, /* MyAnimeList */ .button.button-myanimelist { color: #133a95; - background-color: #fff } + background-color: #ffffff } .button.button-myanimelist:hover, .button.button-myanimelist:focus { filter: brightness(90%) } @@ -200,10 +200,10 @@ button:hover, filter: brightness(90%); } - /* Vero */ - .button.button-vero { - color: #fff; - background-color: #000 } - .button.button-vero:hover, - .button.button-vero:focus { - filter: brightness(90%) } \ No newline at end of file +/* Vero */ +.button.button-vero { + color: #ffffff; + background-color: #000000 } +.button.button-vero:hover, +.button.button-vero:focus { + filter: brightness(90%) } \ No newline at end of file From b2bdddca31e55d528f4b7f3dc9d145024f2de3b6 Mon Sep 17 00:00:00 2001 From: mich41v4294 Date: Sun, 13 Nov 2022 13:11:10 +0100 Subject: [PATCH 4/5] fixed codepen button style --- preview.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preview.html b/preview.html index 4054864..52582d7 100644 --- a/preview.html +++ b/preview.html @@ -107,7 +107,7 @@
- + Codepen LogoCodepen
From 9d1068cbd7d3f9dc985f15beef7a745ab7a1e6b4 Mon Sep 17 00:00:00 2001 From: mich41v4294 Date: Sun, 13 Nov 2022 13:31:09 +0100 Subject: [PATCH 5/5] fixed itch.io colors --- css/brands-extended.css | 4 ++-- images/icons-extended/itchio.svg | 24 +++++++++++++++++++++++- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/css/brands-extended.css b/css/brands-extended.css index 73da5dc..e50542d 100644 --- a/css/brands-extended.css +++ b/css/brands-extended.css @@ -156,8 +156,8 @@ button:hover, /* itch.io */ .button.button-itchio { - color: #000000; - background-color: #dd4a4a; + color: #ffffff; + background-color: #fa5c5c; } .button.button-itchio:hover, .button.button-itchio:focus { diff --git a/images/icons-extended/itchio.svg b/images/icons-extended/itchio.svg index 4a4ac25..1887c52 100644 --- a/images/icons-extended/itchio.svg +++ b/images/icons-extended/itchio.svg @@ -1 +1,23 @@ - \ No newline at end of file + + + + + +