From 57b2af4cf830ad722605ddbeb0cd245cceb49151 Mon Sep 17 00:00:00 2001 From: Dmitri DB Date: Thu, 21 Apr 2022 08:06:18 -0700 Subject: initial commit --- SputnicSans-2020.ttf | Bin 0 -> 33580 bytes contact.html | 31 +++++ index.html | 30 +++++ ...aaaaaaaaaaiiiiiiiiiiiiiiillllllllllllllllll.svg | 1 + services.html | 47 +++++++ style.css | 135 +++++++++++++++++++++ wave.svg | 1 + 7 files changed, 245 insertions(+) create mode 100644 SputnicSans-2020.ttf create mode 100644 contact.html create mode 100644 index.html create mode 100644 mmmmmmmmmmmmaaaaaaaaaaaaaaaaiiiiiiiiiiiiiiillllllllllllllllll.svg create mode 100644 services.html create mode 100644 style.css create mode 100644 wave.svg diff --git a/SputnicSans-2020.ttf b/SputnicSans-2020.ttf new file mode 100644 index 0000000..0e56516 Binary files /dev/null and b/SputnicSans-2020.ttf differ diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..d1b543b --- /dev/null +++ b/contact.html @@ -0,0 +1,31 @@ + + + + + 31337itsolutions + + + +
+

Contact

+

+ info 31337itsolutions.com +

+ + 1 9 4 9 4 4 4 2 2 1 3 +

+

+

+
+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..239959c --- /dev/null +++ b/index.html @@ -0,0 +1,30 @@ + + + + + 31337itsolutions + + + +
+
+

Welcome to 31337itsolutions.com!

+

+ We specialize in providing over 25 years of experience in delivering top tier IT consulting services. Our full stack runs the gamut all the way from software, hardware, network and security engineering, and in a wide range of fields such as marketing, art & design, and research. +

+ + diff --git a/mmmmmmmmmmmmaaaaaaaaaaaaaaaaiiiiiiiiiiiiiiillllllllllllllllll.svg b/mmmmmmmmmmmmaaaaaaaaaaaaaaaaiiiiiiiiiiiiiiillllllllllllllllll.svg new file mode 100644 index 0000000..70886ef --- /dev/null +++ b/mmmmmmmmmmmmaaaaaaaaaaaaaaaaiiiiiiiiiiiiiiillllllllllllllllll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/services.html b/services.html new file mode 100644 index 0000000..066fca6 --- /dev/null +++ b/services.html @@ -0,0 +1,47 @@ + + + + + 31337itsolutions + + + +
+

Welcome to 31337itsolutions.com!

+

+ We do basic Tier1 leven service IT consulting for the corporate and private sector, as well as our own in-house research and development. Our services include the following: +

    +
  • Software Engineering
  • +
  • Hardware Engineering
  • +
  • Network Engineering
  • +
  • Security Engineering
  • +
  • Security Auditing
  • +
  • Exploit Development
  • +
  • Security Incident Response
  • +
  • Managed Services - Hosting - Webmastering
  • +
  • DDoS Mitigation
  • +
  • VPN Services
  • +
  • Database Administration
  • +
  • Data Recovery Services
  • +
  • Telecom
  • +
  • Graphic Design for Web
  • +
  • And much more...
  • +
+

+ Contact us today and we'll be happy to give you a quote! +

+ +
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..6049c25 --- /dev/null +++ b/style.css @@ -0,0 +1,135 @@ +/* init */ + +@font-face { + font-family: "SputnicSans"; + src: url('SputnicSans-2020.ttf'); +} + +/* main body and colors */ + +:root { + --sand1: hsl(59, 100%, 86%, 0.5); + --sand2: hsl(59, 100%, 86%, 0.2); + --sand3: hsl(59, 100%, 86%, 0.1); + --beachborder: hsl(255, 0, 0, 0.1); + --dark-blue: hsl(211, 100%, 50%); + --light-blue: hsl(179, 100%, 40%); + /* The 0.75 alpha here is so the dark black text flows with the gradient */ + --textcolor: hsla(0, 0%, 0%, 0.75); + --visitedcolor: hsl(211, 100%, 50%); + --linkcolor: hsl(215, 100%, 50%); + --textshadow: hsl(211, 100%, 50%); +} + +html { + width: 100%; + font: 1.6em "SputnicSans", sans-serif; + color: var(--textcolor); + background: linear-gradient(-45deg, var(--sand1), var(--light-blue), var(--dark-blue)); + background-size: 400% 400%; + animation: gradient 10s ease infinite; + height: 100vh; +} + +/* +body { + width: 100%; + height: 100%; + background: linear-gradient(to top left , var(--sand1), var(--sand2), var(--sand3), hsla(10,10%,10%,.10)); + background-size: 100% 100%; +} +*/ + +@keyframes gradient { + 0% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } + 100% { + background-position: 0% 50%; + } +} + +a { + color: var(--linkcolor); + text-shadow: 0 0 5px var(--textshadow); + font-weight: 400; + padding-bottom: 5px; + background: url("wave.svg"); + /* + background-repeat: repeat; + background-position-x: 0%; + background-position-y: 0%; + background-size: auto auto; + */ + background-repeat: repeat-x; + background-size: 15px 5px; + background-position: 1px 19px; + animation: move 15s linear infinite; + -webkit-animation: move 15s linear infinite; + animation-play-state: paused; + text-decoration: none; + background-color: transparent; + -webkit-text-decoration-skip: objects; +} + +@-webkit-keyframes move { +from { + background-position: 2px 19px; + } + to { + background-position: 500px 19px; + } +} + +@keyframe move { +from { + background-position: 2px 19px; + } + to { + background-position: 500px 19px; + } +} + +a:hover { + color: var(--textcolor); + text-decoration-style: wavy; + animation-play-state: running; + text-shadow: 0 0 5px var(--textshadow); +} + +a:visited { + color: var(--vistedcolor); + text-shadow: 0 0 5px var(--textshadow); +} + +.content { + margin-bottom: 1em; +} + +div.menu { + text-align: center; +} + +ul.menu { + list-style-type: none; + padding: 0; +} + +ul.menu li { + display: inline-block; + margin: 0 1em; + text-decoration: none; +} + +div#copyright { + text-align: center; + font-size: 0.8em; +} + +img#haha { + width: 3%; + height: 3%; +} diff --git a/wave.svg b/wave.svg new file mode 100644 index 0000000..e0a6d9f --- /dev/null +++ b/wave.svg @@ -0,0 +1 @@ + \ No newline at end of file -- cgit v1.2.3