summaryrefslogtreecommitdiff
path: root/css/voidnet.css
diff options
context:
space:
mode:
authorLinuxWizard42 <linuxwizard@voidnet.dy.fi>2023-06-07 17:14:29 +0300
committerLinuxWizard42 <linuxwizard@voidnet.dy.fi>2023-06-07 17:14:29 +0300
commit8dcb875f03749568558167c194f947635e6b6f9a (patch)
tree28f2c6ea1ba198ac6e8a1ccbc1e06ed23dff897c /css/voidnet.css
downloadVoidNet_New-8dcb875f03749568558167c194f947635e6b6f9a.tar.gz
VoidNet_New-8dcb875f03749568558167c194f947635e6b6f9a.tar.zst
First commit
Diffstat (limited to 'css/voidnet.css')
-rw-r--r--css/voidnet.css104
1 files changed, 104 insertions, 0 deletions
diff --git a/css/voidnet.css b/css/voidnet.css
new file mode 100644
index 0000000..3da3bcd
--- /dev/null
+++ b/css/voidnet.css
@@ -0,0 +1,104 @@
+@font-face{
+ font-family: "FreeMono";
+ src: url('../fonts/FreeMono.ttf');
+}
+
+body{
+ font-family: "FreeMono";
+ background-image: linear-gradient(45deg, #000000, #222222);
+ background-size: cover;
+ background-attachment: fixed;
+ background-repeat: none;
+ height: 100%;
+ min-height: 100%;
+}
+
+.page_header_background{
+ width: 99%;
+ top: 10px;
+ background: linear-gradient(180deg, #000000, #770000);
+ position: relative;
+ border-radius: 10px;
+ height: 185px;
+}
+
+.page_header_title{
+ top: 0px;
+ position: relative;
+ font-weight: bold;
+}
+
+.page_nav{
+ background-color: #000000;
+ position: relative;
+ width: 100%;
+ word-wrap: break-word;
+}
+
+.content{
+ margin: auto;
+ background-color: #222222;
+ position: relative;
+ top: 40px;
+ width: 95%;
+ box-shadow: 0px 0px 5px #FF9900;
+ border-radius: 10px;
+}
+
+.content_inner{
+ height: 100%;
+ position: relative;
+ margin: 0px 20px;
+ word-wrap: break-word;
+}
+
+.content_link{
+ font-size: 24px;
+ color: #FF9900;
+}
+
+.wtext{
+ color: #FFFFFF;
+}
+
+.nav_link{
+ color: #FF9900;
+ height: 100%;
+ font-size: 24px;
+ font-weight: bold;
+ padding: 0px 1px;
+ text-decoration: none;
+ position: relative;
+}
+
+.nav_link:hover{
+ text-decoration: underline;
+ cursor: pointer;
+ background-color: #FF9900;
+ color: #000000;
+ transition-duration: 0.25s;
+ -moz-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+}
+
+.nav_link:not(:hover){
+ text-decoration: none;
+ background-color: #000000;
+ color: #FF9900;
+ transition-duration: 0.25s;
+ -moz-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+}
+
+.content_title{
+ font-weight: bold;
+ font-size: 35px;
+ margin: 0px 20px;
+ position: relative;
+}
+
+.content_text{
+ color: #FFFFFF;
+ font-size: 24px;
+ position: relative;
+}