diff --git a/index.html b/index.html index 4635b5e..a3a7973 100644 --- a/index.html +++ b/index.html @@ -1,61 +1,58 @@ +
-
+ P2PRC is peer to peer to network designed for computation reasons.
-This project was developed during my 4th year dissertation at Heriot-Watt University and We are getting the - project to a usable state.
-It's purpose is for people to use each others computers rather than servers such as AWS and Azure.
+P2PRC is peer to peer to network designed for computation reasons.
+This project was developed during my 4th year dissertation at Heriot-Watt University and We are getting the project to a usable state.
+It's purpose is for people to use each others computers rather than servers such as AWS and Azure.
-Project:
-Project:
+Community Server to download public network
-Use this server to only download part of the p2p network
-Use this server to only download part of the p2p network
-Community Server to download public network
+Use this server to only download part of the p2p network
+Use this server to only download part of the p2p network
+Main developer:
- -Other links:
- +Main developer:
+Other links:
+ diff --git a/style.css b/style.css new file mode 100644 index 0000000..1686a4f --- /dev/null +++ b/style.css @@ -0,0 +1,32 @@ +body { + font-family: sans-serif; +} + +span#discordJoin { + color: red; +} + +/* Dark mode */ +@media (prefers-color-scheme: dark) { + /* General Page Changing */ + body { + background: #121212; /* Background Color */ + color: #FFFFFF; /* Text Color */ + } + + a:link{ /* Unvisited Link */ + color: #03DAC5; + } + + a:visited { /* Visited Link */ + color: #BB86FC; + } + + a:hover { /* Mouse over Link */ + color: #018786; + } + + span#discordJoin { /* Text Color Change */ + color: #cc0227; + } +}