diff --git a/index.html b/index.html index 0cde87e..b271554 100644 --- a/index.html +++ b/index.html @@ -2,13 +2,14 @@ YouHaveTrouble +
-

youhavetrouble.me

+

youhavetrouble.me

@@ -17,8 +18,9 @@
Socials -

GitHub
- Discord +

+ GitHub
+ Discord

@@ -26,15 +28,9 @@
My projects

- Minecraft - Server optimization guide
- CommandWhitelist
- TogglePvP
-

-

- Bots - Gamer Bot (Discord)
+ See my projects here

+
Support me diff --git a/projects/index.html b/projects/index.html new file mode 100644 index 0000000..aad7730 --- /dev/null +++ b/projects/index.html @@ -0,0 +1,63 @@ + + + YouHaveTrouble + + + + + + + +
+ +
+
+

Tutorials

+

Minecraft server optimization guide

+
See project
+

A guide for bukkit minecraft server users aiming to improve performance to get more players on their server.

+
+
+
+
+

Minecraft plugins

+

CommandWhitelist

+
+ Source code + | + SpigotMC page +
+

Bukkit plugin that allows server owners control over which commands players can see and execute.

+ +

TogglePvP

+
+ Source code + | + SpigotMC page +
+

Bukkit plugin allowing players to choose if they want to partake in PvP combat. Also protects player pets and accounts for huge amount of combat situations to effectively protect player.

+ +

Censura

+
+ Source code + | + SpigotMC page +
+

Advanced censorship bukkit plugin that lets server owners completely eliminate the usage of selected words on the server. Works with basically any user text input.

+
+
+
+
+

Discord bots

+

GamerBot

+
+ Top.gg page +
+

Bot that allows you to search League of Legends summoner profiles and ping minecraft and source game servers. Will be open sourced soon.

+
+
+ +
+ \ No newline at end of file diff --git a/style/main.css b/style/main.css index af3338e..f41c07e 100644 --- a/style/main.css +++ b/style/main.css @@ -47,7 +47,6 @@ body { padding-top: 0.4em; background: rgba(0, 0, 0, 0.5); text-align: center; - } legend { font-size: 120%; diff --git a/style/projects.css b/style/projects.css new file mode 100644 index 0000000..5db02a5 --- /dev/null +++ b/style/projects.css @@ -0,0 +1,52 @@ +.project-window { + width: auto; + min-width: 7em; + max-width: 750px; + height: auto; + margin: 1em; + padding: 0.7em; + padding-top: 0.4em; + background: rgba(0, 0, 0, 0.5); + text-align: center; +} + +h2 { + margin: 0; +} +h4 { + margin: 0; +} +h5 { + margin: 0.4em; +} + +.project-window p { + display: block; + margin-top: 0; + font-size: 0.9em; +} + +.project-window a { + color: rgb(190, 190, 190); +} +.project-window a:hover { + color: #fff; +} + +@media only screen +and (max-width: 1000px) { + .wrapper { + height: auto; + flex-direction: column; + } + .linewrapper { + height: auto; + flex-direction: column; + } + .window { + width: 85%; + } + h1 { + font-size: 1.7em; + } +} \ No newline at end of file