diff --git a/badge.png b/badge.png index 03fd297..3d3156b 100644 Binary files a/badge.png and b/badge.png differ diff --git a/example.png b/example.png new file mode 100644 index 0000000..03fd297 Binary files /dev/null and b/example.png differ diff --git a/index.html b/index.html index b73df40..2f67d45 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,35 @@ -
-Site coming soon.
- + +Would you like an EU Badge on your GitHub Profile?
+The "badge" is nothing more than a label that you're a part of the eu
team. To join the team:
list.txt
and add your username to the bottom of this file.To enable the badge, do the following:
+That's it! You'll now have the badge displayed on your GitHub Profile.
+Any questions? Just open an issue.
+This organization has no relation with the European Union. This is just done by some guy who happens to have the username. (>_<)+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..c26eb61 --- /dev/null +++ b/style.css @@ -0,0 +1,60 @@ +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +@media (prefers-color-scheme: dark) { + :root { + --nc-tx-1: #ffffff !important; + --nc-tx-2: #eeeeee !important; + --nc-bg-1: #0D1117 !important; + --nc-bg-2: #222222 !important; + --nc-bg-3: #333333 !important; + --nc-lk-1: #3291FF !important; + --nc-lk-2: #3291FF !important; + --nc-lk-tx: #FFFFFF !important; + --nc-ac-1: #7928CA !important; + --nc-ac-tx: #FFFFFF !important; + } +} + +img:not(.badge) { + width: 345px; +} + +img.badge { + margin-left: .6rem; + margin-bottom: 0; +} + +@media only screen and (max-width: 768px) { + img:not(.badge) { + width: 50%; + } +} + +::selection { + background-color: #003399 !important; +} + +a { + text-decoration-line: none; +} + +a:hover { + text-decoration-line: underline; +} + +blockquote { + background-color: #05070A !important; + border-left: 5px solid #68560C; + color: #9A9A9A; +} + +.eu { + color: #003399; +} +.eubadge { + color: #FFCC00; +} \ No newline at end of file