From c1d0e9cee57ced49c0617220106cfff6a719ca0c Mon Sep 17 00:00:00 2001 From: Brian Date: Thu, 11 Apr 2019 03:05:47 +0000 Subject: [PATCH 01/25] Introduce theme 'anon-pro' --- README.md | 1 + themes/anon-pro.css | 95 +++++++++++++++++++++++++++++++++++++++++++++ users/b.json | 2 +- 3 files changed, 97 insertions(+), 1 deletion(-) create mode 100644 themes/anon-pro.css diff --git a/README.md b/README.md index 584cbaaa..e2ba4969 100644 --- a/README.md +++ b/README.md @@ -177,6 +177,7 @@ Current available themes: * dusk - [preview](https://output.jsbin.com/giqivoh) (by [@georapbox](https://github.com/georapbox)) * 8bits - [preview](https://matricali.github.io/mit-license-8bits-theme/) (by [@matricali](https://github.com/matricali)). *Available colours: monochrome, monochrome-white, monochrome-blue-white, monochrome-green, monochrome-amber. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `8bits-monochrome`.* * hacker - [preview](https://tommy.mit-license.org/) (by [@TommyPujol06](https://github.com/TommyPujol06)) +* anon-pro - [preview](https://b.mit-license.org) (by [@bbbrrriiiaaannn](https://github.com/bbbrrriiiaaannn)) ## Formats & URLs diff --git a/themes/anon-pro.css b/themes/anon-pro.css new file mode 100644 index 00000000..5dac8f2c --- /dev/null +++ b/themes/anon-pro.css @@ -0,0 +1,95 @@ +@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro:400,400i,700'); + +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +body { + font-family: 'Anonymous Pro', monospace; + font-size: 1.1em; + background: #fbfbfb; + color: black; + display: flex; + align-items: center; + justify-content: center; +} + +article { + max-width: 90%; + min-height: 100vh; + padding: 30px 0 120px; + display: flex; + flex-direction: column; + justify-content: center; +} + +@media (min-width: 770px) { + article { + max-width: 693px; + } +} + +article img { + display: none; +} + +article h1 { + font-size: 36px; + font-weight: 400; + margin-bottom: 24px +} + +article p:first-of-type{ + font-style: italic; +} + +article p { + margin-bottom: 1em; + font-size: 24px; + line-height: 1.4; +} + +article p:last-of-type { + font-style: italic; +} + +article a { + color: black; + text-decoration: none; + background-position: center bottom; + background-size: 100% 3px; + background-repeat: no-repeat; + background-image: linear-gradient(#38f, #38f); +} + +article a:hover, article a:focus { + background-color: #38f; + outline: none; +} + +footer { position: absolute; } +footer a { + position: fixed; + bottom: 25px; + left: 0; + color: white; + max-width: 320px; + background: #db2d20; + padding: 5px 20px 5px 40px; + display: block; + transform: translateX(-20px); + transition: all .2s ease; + box-shadow: 5px 5px 0px #ddd; +} + +footer a:hover, footer a:focus { + transform: translateX(0); + box-shadow: 10px 10px 0px #daa; + outline: none; +} + + + + diff --git a/users/b.json b/users/b.json index 3695b0c7..b56b8cb6 100644 --- a/users/b.json +++ b/users/b.json @@ -1,5 +1,5 @@ { "copyright": "Brian Seward, http://brianseward.com", "url": "http://brianseward.com", - "theme": "default" + "theme": "anon-pro" } From 4799465917b1c3f4c3a3d5c8281b397af4a1a560 Mon Sep 17 00:00:00 2001 From: "Seung Won [Tom] Lee" Date: Sun, 26 May 2019 11:12:16 -0700 Subject: [PATCH 02/25] Create bwdmonkey.json --- users/bwdmonkey.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 users/bwdmonkey.json diff --git a/users/bwdmonkey.json b/users/bwdmonkey.json new file mode 100644 index 00000000..63a281b0 --- /dev/null +++ b/users/bwdmonkey.json @@ -0,0 +1,5 @@ +{ + "copyright": "Tom Lee", + "url": "https://github.com/bwdmonkey", + "email": "seungwon.tom.lee@gmail.com" +} From 0dceba9a6e6a1b279a4debf6b24849d9e099cb43 Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Tue, 28 May 2019 13:22:42 +0100 Subject: [PATCH 03/25] fix: strip GA tracking Not needed for anything and less trackers is better. Fixes #1272 --- LICENSE.html | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/LICENSE.html b/LICENSE.html index a6674cf2..0066cbd0 100644 --- a/LICENSE.html +++ b/LICENSE.html @@ -61,15 +61,5 @@

The MIT License (MIT)

- From 5cf8e5285a1dc3b1882c99e46dde6d14aa9b84b9 Mon Sep 17 00:00:00 2001 From: Jorge Matricali Date: Tue, 28 May 2019 23:53:30 -0300 Subject: [PATCH 04/25] + Adding matricali.json --- users/matricali.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 users/matricali.json diff --git a/users/matricali.json b/users/matricali.json new file mode 100644 index 00000000..655b601d --- /dev/null +++ b/users/matricali.json @@ -0,0 +1,8 @@ +{ + "copyright": "Jorge Matricali", + "url": "https://github.com/matricali", + "email": "jorgematricali@gmail.com", + "format": "html", + "theme": "8bits-monochrome-amber", + "gravatar": true +} From fd81a1d3c5622ede207bd321a3201693faab99d1 Mon Sep 17 00:00:00 2001 From: Suzuka Asagiri Date: Thu, 30 May 2019 23:08:17 +0900 Subject: [PATCH 05/25] :new: Add suzutan.json --- users/suzutan.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 users/suzutan.json diff --git a/users/suzutan.json b/users/suzutan.json new file mode 100644 index 00000000..e68b2ea1 --- /dev/null +++ b/users/suzutan.json @@ -0,0 +1,7 @@ +{ + "copyright": "Suzuka Asagiri", + "url": "https://suzutan.jp", + "email": "suzutan0s2@suzutan.jp", + "gravatar": true, + "theme": "material-pink" +} From 06280914608d54f9c3847b5dbf917786e0275857 Mon Sep 17 00:00:00 2001 From: TJ Harrop Date: Sat, 1 Jun 2019 10:39:29 +1000 Subject: [PATCH 06/25] Create tjharrop.json --- users/tjharrop.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 users/tjharrop.json diff --git a/users/tjharrop.json b/users/tjharrop.json new file mode 100644 index 00000000..b8d7f248 --- /dev/null +++ b/users/tjharrop.json @@ -0,0 +1 @@ +{"copyright":"TJ Harrop","url":"http:\/\/tjharrop.github.io","email":"tjharrop@gmail.com","format":"html"} From 1ae79afe70f0c7cd24652cb298c9b52036c47303 Mon Sep 17 00:00:00 2001 From: Tetsuya Mori Date: Sun, 2 Jun 2019 23:02:57 +0900 Subject: [PATCH 07/25] Create monry.json --- users/monry.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 users/monry.json diff --git a/users/monry.json b/users/monry.json new file mode 100644 index 00000000..0de7f64c --- /dev/null +++ b/users/monry.json @@ -0,0 +1 @@ +{"copyright":"Tetsuya Mori","url":"https:\/\/github.com\/monry"} From 87e5f9f18d27061dd481217c3733a148c3e517a0 Mon Sep 17 00:00:00 2001 From: "k-fox.net" <35105499+kfoxdotnet@users.noreply.github.com> Date: Mon, 17 Jun 2019 09:08:43 -0400 Subject: [PATCH 08/25] Create furrymedia.json --- users/furrymedia.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 users/furrymedia.json diff --git a/users/furrymedia.json b/users/furrymedia.json new file mode 100644 index 00000000..b2e060c6 --- /dev/null +++ b/users/furrymedia.json @@ -0,0 +1,5 @@ +{ + "copyright": "furry.media, https://furry.media • https://foxpa.ws", + "url": "https://furry.media", + "theme": "double-windsor" +} From 32687656244c1d1c509eef9d4afecf2a33b0fc7c Mon Sep 17 00:00:00 2001 From: MIT License Bot Date: Wed, 19 Jun 2019 15:02:18 +0100 Subject: [PATCH 09/25] Automated creation of user twitch. --- users/twitch.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json new file mode 100644 index 00000000..f8cc22f1 --- /dev/null +++ b/users/twitch.json @@ -0,0 +1,6 @@ +{ + "copyright": "Remy Sharp (twitch)", + "url": "https://remysharp.com", + "email": "remy@remysharp.com", + "gravatar": true +} \ No newline at end of file From da9f2b5dbcdf3d824127ee92bf4fa7463183181d Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Wed, 19 Jun 2019 15:04:30 +0100 Subject: [PATCH 10/25] Delete twitch.json --- users/twitch.json | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json deleted file mode 100644 index f8cc22f1..00000000 --- a/users/twitch.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "copyright": "Remy Sharp (twitch)", - "url": "https://remysharp.com", - "email": "remy@remysharp.com", - "gravatar": true -} \ No newline at end of file From 7ecc32f5e834e04a77fb1e5d5df0ca53d2c099e8 Mon Sep 17 00:00:00 2001 From: MIT License Bot Date: Wed, 19 Jun 2019 15:04:57 +0100 Subject: [PATCH 11/25] Automated creation of user twitch. --- users/twitch.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json new file mode 100644 index 00000000..f8cc22f1 --- /dev/null +++ b/users/twitch.json @@ -0,0 +1,6 @@ +{ + "copyright": "Remy Sharp (twitch)", + "url": "https://remysharp.com", + "email": "remy@remysharp.com", + "gravatar": true +} \ No newline at end of file From 01b14cca48a690d455b841674e71b79cf205c094 Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Wed, 19 Jun 2019 15:11:43 +0100 Subject: [PATCH 12/25] Delete twitch.json --- users/twitch.json | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json deleted file mode 100644 index f8cc22f1..00000000 --- a/users/twitch.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "copyright": "Remy Sharp (twitch)", - "url": "https://remysharp.com", - "email": "remy@remysharp.com", - "gravatar": true -} \ No newline at end of file From a265c9783f1e79f2467a2dd5dd9f05a551422954 Mon Sep 17 00:00:00 2001 From: MIT License Bot Date: Wed, 19 Jun 2019 15:11:54 +0100 Subject: [PATCH 13/25] Automated creation of user twitch. --- users/twitch.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json new file mode 100644 index 00000000..f8cc22f1 --- /dev/null +++ b/users/twitch.json @@ -0,0 +1,6 @@ +{ + "copyright": "Remy Sharp (twitch)", + "url": "https://remysharp.com", + "email": "remy@remysharp.com", + "gravatar": true +} \ No newline at end of file From 360ac2966453ceaa8b86c25f3ee7364cb95ef5f1 Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Wed, 19 Jun 2019 18:07:20 +0100 Subject: [PATCH 14/25] Delete twitch.json --- users/twitch.json | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json deleted file mode 100644 index f8cc22f1..00000000 --- a/users/twitch.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "copyright": "Remy Sharp (twitch)", - "url": "https://remysharp.com", - "email": "remy@remysharp.com", - "gravatar": true -} \ No newline at end of file From d09aeb9d1f5145f72dbb6cfd6075cd4ec85a187b Mon Sep 17 00:00:00 2001 From: MIT License Bot Date: Wed, 19 Jun 2019 18:09:27 +0100 Subject: [PATCH 15/25] Automated creation of user twitch. --- users/twitch.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 users/twitch.json diff --git a/users/twitch.json b/users/twitch.json new file mode 100644 index 00000000..a0144415 --- /dev/null +++ b/users/twitch.json @@ -0,0 +1,6 @@ +{ + "copyright": "Remy Sharp (twitch)", + "url": "https://remysharp.com", + "email": "remy@remysharp.com", + "gravatar": true +} \ No newline at end of file From b1aad506c0c59904e5f6d1ae77be3ff7ba580dd7 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 20 Jun 2019 20:49:58 +1200 Subject: [PATCH 16/25] Enforce regular formatting --- users/monry.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/users/monry.json b/users/monry.json index 0de7f64c..7a3c580d 100644 --- a/users/monry.json +++ b/users/monry.json @@ -1 +1,4 @@ -{"copyright":"Tetsuya Mori","url":"https:\/\/github.com\/monry"} +{ + "copyright": "Tetsuya Mori", + "url": "https://github.com/monry" +} From d60afcb55d6565d35b3d378f36834070cf5e320b Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 20 Jun 2019 20:50:54 +1200 Subject: [PATCH 17/25] Enforce regular formatting --- users/tjharrop.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/users/tjharrop.json b/users/tjharrop.json index b8d7f248..3f1f3ffc 100644 --- a/users/tjharrop.json +++ b/users/tjharrop.json @@ -1 +1,6 @@ -{"copyright":"TJ Harrop","url":"http:\/\/tjharrop.github.io","email":"tjharrop@gmail.com","format":"html"} +{ + "copyright": "TJ Harrop", + "url": "https://tjharrop.github.io", + "email": "tjharrop@gmail.com", + "format": "html" +} From f9dc0860ee260e5c25fdea782f56fe4a7d7ef9e0 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 17:35:46 +1200 Subject: [PATCH 18/25] "Merge" PR #1295 Signed-off-by: Richie Bendall --- users/4232praveenpal.json | 5 +++++ users/praveenpal4232.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 users/4232praveenpal.json create mode 100644 users/praveenpal4232.json diff --git a/users/4232praveenpal.json b/users/4232praveenpal.json new file mode 100644 index 00000000..821a0b4b --- /dev/null +++ b/users/4232praveenpal.json @@ -0,0 +1,5 @@ +{ + "copyright": "Praveen Pal", + "url": "https://github.com/praveenpal4232", + "email": "praveenpal4232@gmail.com" +} diff --git a/users/praveenpal4232.json b/users/praveenpal4232.json new file mode 100644 index 00000000..821a0b4b --- /dev/null +++ b/users/praveenpal4232.json @@ -0,0 +1,5 @@ +{ + "copyright": "Praveen Pal", + "url": "https://github.com/praveenpal4232", + "email": "praveenpal4232@gmail.com" +} From 10527b20674b3262bd17f8aad1f1a3cce21c466d Mon Sep 17 00:00:00 2001 From: Vaibhav Kandwal <19517445+boxdox@users.noreply.github.com> Date: Wed, 26 Jun 2019 17:22:25 +0530 Subject: [PATCH 19/25] Create boxdox.json --- users/boxdox.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 users/boxdox.json diff --git a/users/boxdox.json b/users/boxdox.json new file mode 100644 index 00000000..c657b2f0 --- /dev/null +++ b/users/boxdox.json @@ -0,0 +1,5 @@ +{ + "copyright": "BoxDox", + "url": "https://vaibhavkandwal.com", + "theme": "black-beauty" +} From 5736e07de11ac52b235c4578ad8d8f953c6a4194 Mon Sep 17 00:00:00 2001 From: Henry Gabryjelski Date: Thu, 27 Jun 2019 23:56:08 -0700 Subject: [PATCH 20/25] Add henrygab --- users/henrygab.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 users/henrygab.json diff --git a/users/henrygab.json b/users/henrygab.json new file mode 100644 index 00000000..9621e077 --- /dev/null +++ b/users/henrygab.json @@ -0,0 +1,4 @@ +{ + "copyright": "Henry Gabryjelski", + "url": "https://github.com/henrygab/" +} From 438ccac3a5e511b706fe0415a69a326e6c351cd9 Mon Sep 17 00:00:00 2001 From: Khushraj Rathod Date: Mon, 1 Jul 2019 22:46:11 +0530 Subject: [PATCH 21/25] Rename User and add JSON file --- users/holyprogrammer.json | 7 +++++++ users/khushraj.json | 5 ----- 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 users/holyprogrammer.json delete mode 100644 users/khushraj.json diff --git a/users/holyprogrammer.json b/users/holyprogrammer.json new file mode 100644 index 00000000..0feffb0d --- /dev/null +++ b/users/holyprogrammer.json @@ -0,0 +1,7 @@ +{ + "copyright": "Khushraj Rathod", + "url": "https://holyprogrammer.github.io", + "email": "khushraj2005@gmail.com", + "theme": "dusk", + "gravatar": true +} diff --git a/users/khushraj.json b/users/khushraj.json deleted file mode 100644 index b9b310c9..00000000 --- a/users/khushraj.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "copyright": "Khushraj Rathod", - "email": "khushraj2005@gmail.com", - "theme": "material-pink" -} From 89d89253db1d8980354c08b46c255eafd2d6f86d Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Tue, 2 Jul 2019 12:31:32 +1200 Subject: [PATCH 22/25] Update indent --- users/holyprogrammer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/users/holyprogrammer.json b/users/holyprogrammer.json index 0feffb0d..ff4e707f 100644 --- a/users/holyprogrammer.json +++ b/users/holyprogrammer.json @@ -1,7 +1,7 @@ { - "copyright": "Khushraj Rathod", - "url": "https://holyprogrammer.github.io", - "email": "khushraj2005@gmail.com", - "theme": "dusk", - "gravatar": true + "copyright": "Khushraj Rathod", + "url": "https://holyprogrammer.github.io", + "email": "khushraj2005@gmail.com", + "theme": "dusk", + "gravatar": true } From 84b3bc1f2b32a26be82e0d2599386dc2ea28bb0f Mon Sep 17 00:00:00 2001 From: Ian Macalinao Date: Tue, 2 Jul 2019 11:30:11 -0700 Subject: [PATCH 23/25] Add igm to users --- users/igm.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 users/igm.json diff --git a/users/igm.json b/users/igm.json new file mode 100644 index 00000000..f2a1109a --- /dev/null +++ b/users/igm.json @@ -0,0 +1,7 @@ +{ + "copyright": "Ian G. Macalinao", + "url": "https://ian.pw", + "email": "me@ian.pw", + "gravatar": true +} + From 8e57c6ef44903a2c0cccd0a42951227c32892327 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 3 Jul 2019 15:28:04 +1200 Subject: [PATCH 24/25] Remove extra line --- users/igm.json | 1 - 1 file changed, 1 deletion(-) diff --git a/users/igm.json b/users/igm.json index f2a1109a..ca6bc315 100644 --- a/users/igm.json +++ b/users/igm.json @@ -4,4 +4,3 @@ "email": "me@ian.pw", "gravatar": true } - From d9238de04e362cd861fd8553facce1f2c867b1a3 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 5 Jul 2019 23:04:56 +1200 Subject: [PATCH 25/25] Properly format CSS file --- themes/anon-pro.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/themes/anon-pro.css b/themes/anon-pro.css index 5dac8f2c..a9693484 100644 --- a/themes/anon-pro.css +++ b/themes/anon-pro.css @@ -41,7 +41,7 @@ article h1 { margin-bottom: 24px } -article p:first-of-type{ +article p:first-of-type { font-style: italic; } @@ -69,7 +69,10 @@ article a:hover, article a:focus { outline: none; } -footer { position: absolute; } +footer { + position: absolute; +} + footer a { position: fixed; bottom: 25px; @@ -89,7 +92,3 @@ footer a:hover, footer a:focus { box-shadow: 10px 10px 0px #daa; outline: none; } - - - -