From 44dc49dd66f71984fb25c73d78c9f772b95abe4f Mon Sep 17 00:00:00 2001 From: stderr64 Date: Tue, 9 Apr 2024 19:08:10 +0300 Subject: First commit --- css/xservers.css | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 css/xservers.css (limited to 'css/xservers.css') diff --git a/css/xservers.css b/css/xservers.css new file mode 100644 index 0000000..1b456ea --- /dev/null +++ b/css/xservers.css @@ -0,0 +1,132 @@ +@font-face{ + font-family: "FreeMono"; + src: url('../fonts/FreeMono.ttf'); +} + +:root{ + font-family: "FreeMono"; + background-image: linear-gradient(135deg, #000000, #222222); + background-size: 100% 100%; + background-attachment: fixed; + background-repeat: no-repeat; + background-position: center; + width: 100%; + height: 100%; + min-height: 100%; + min-width: 100%; + top: 0px; + left: 0px; + bottom: 0px; + margin: 0px; +} + +body{ + font-family: "FreeMono"; + background-image: linear-gradient(135deg, #000000, #222222); + background-size: 100% 100%; + background-attachment: fixed; + background-repeat: no-repeat; + background-position: center; + width: 100%; + height: 100%; + min-height: 100%; + min-width: 100%; + top: 0px; + left: 0px; + bottom: 0px; + margin: 0px; +} + +.page_header_background{ + width: 99%; + top: 10px; + background: linear-gradient(180deg, #000000, #FF9900); + position: relative; + border-radius: 10px; + height: 185px; +} + +.page_header_title{ + top: 65px; + font-size: 72px; + color: #000000; + text-shadow: 0px 0px 10px #000000; + 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; + margin-bottom: 40px; +} + +.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; +} -- cgit v1.2.3-86-g962b