summaryrefslogtreecommitdiff
path: root/css/xservers.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/xservers.css')
-rw-r--r--css/xservers.css138
1 files changed, 138 insertions, 0 deletions
diff --git a/css/xservers.css b/css/xservers.css
new file mode 100644
index 0000000..6288746
--- /dev/null
+++ b/css/xservers.css
@@ -0,0 +1,138 @@
+@font-face{
+ src: url( "../fonts/FiraCode-Regular.ttf" );
+ font-family: "Fira Code Regular";
+}
+
+html{
+ font-family: "Fira Code Regular";
+ font-display: swap;
+ background-color: #1F1F2C;
+ background-attachment: fixed;
+ background-size: cover;
+ background-repeat: none;
+ background-position: center;
+ width: 100%;
+ height: 100%;
+ margin: 0px;
+}
+
+body{
+ font-family: "Fira Code Regular";
+ font-display: swap;
+ background-color: #1F1F2C;
+ background-attachment: fixed;
+ background-size: cover;
+ background-repeat: none;
+ background-position: center;
+ width: 100%;
+ height: 100%;
+ margin: 0px;
+}
+
+.full-page-menu{
+ background-color: rgba( 31, 31, 31, 0.7 );
+ backdrop-filter: blur( 5px );
+ display: none;
+ position: fixed;
+ top: 0px;
+ margin: 0px;
+ z-index: 999;
+ width: 100%;
+ height: 100%;
+ word-wrap: break-word;
+}
+
+.full-page-menu-title{
+ position: relative;
+ font-size: 32px;
+ color: #FFFFFF;
+ text-align: center;
+ margin: auto;
+}
+
+.full-page-menu-link{
+ display: block;
+ font-size: 24px;
+ color: #FFFFFF;
+ text-align: center;
+ margin: auto;
+ width: 100%;
+}
+
+.full-page-menu-link:hover{
+ background-color: #FFFFFF;
+ color: #000000;
+ font-size: 28px;
+ transition-duration: 0.25s;
+ -moz-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+}
+
+.full-page-menu-link:not(:hover){
+ transition-duration: 0.25s;
+ -moz-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+}
+
+.container{
+ background-color: #1F1F33;
+ width: 95%;
+ height: 100%;
+ position: relative;
+ margin: auto;
+ box-shadow: 0px 0px 5px #000000;
+}
+
+.container-inner{
+ width: 95%;
+ position: relative;
+ word-wrap: break-word;
+ margin: auto;
+ padding-bottom: 10px;
+}
+
+@media screen and (width <= 576px){
+ .container{
+ background-color: #1F1F33;
+ width: 100%;
+ height: 100%;
+ position: relative;
+ margin: 0px;
+ top: 0px;
+ box-shadow: 0px 0px 0px #000000;
+ }
+}
+
+.text-title{
+ font-size: 24px;
+ color: #FFFFFF;
+ position: relative;
+}
+
+.text-white{
+ font-size: 16px;
+ color: #FFFFFF;
+ position: relative;
+}
+
+.page-link{
+ font-size: 20px;
+ color: #FFFFFF;
+ text-decoration: none;
+ position: relative;
+ font-weight: bold;
+ display: inline-block;
+}
+
+.page-link:hover{
+ text-decoration: underline;
+ transition-duration: 0.25s;
+ -moz-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+}
+
+.page-link:not(:hover){
+ transition-duration: 0.25s;
+ -moz-transition-duration: 0.25s;
+ -webkit-transition-duration: 0.25s;
+}