commit 8ca00e5f917e649df599a68429149be8644aef98 Author: kolarix999 <94450116+kolarix999@users.noreply.github.com> Date: Thu Mar 16 03:03:30 2023 +0100 initial project commit diff --git a/favicon.ico b/favicon.ico new file mode 100755 index 0000000..bd44ce2 Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..a394ccb --- /dev/null +++ b/index.html @@ -0,0 +1,54 @@ + + + + + + + + Cipher + + + + + + + + +
+

COMING COON.

+

CIPHER.HR

+
+
+
+
+
+
+
+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..7e0a46d --- /dev/null +++ b/style.css @@ -0,0 +1,78 @@ + +body { + margin: 0; + background: #00091B; + color: #fff; + font-family: monospace, sans-serif; + font-size: 18px; + line-height: 1; +} + + +@keyframes fadeIn { + from {top: 20%; opacity: 0;} + to {top: 50%; opacity: 1;} + +} + +@-webkit-keyframes fadeIn { + from {top: 20%; opacity: 0;} + to {top: 50%; opacity: 1;} + +} + +.wrapper { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + -webkit-transform: translate(-50%, -50%); + animation: fadeIn 1000ms ease; + -webkit-animation: fadeIn 1000ms ease; + +} + +h2 { + font-size: 50px; + margin: 0; +} + +.dot { + color: #feab2a; +} + +p { + text-align: center; + margin: 20px; + +} + +.boxes { + display: flex; + justify-content: space-between; +} + +.box { + display: inline-block; + color: #00091B; + background: #fff; + height: 50px; + width: 50px; + border-radius: 50px; + border: 2px solid #fff; + transition: all 200ms ease; + position: relative; +} + +.box:not(:last-child) { + margin-right: 15px; +} + +.box:hover { + color: #fff; + cursor: pointer !important; + transform: scale(1.2); + -webkit-transform: scale(1.2); + text-decoration: none; + +} \ No newline at end of file