summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..5a3b781
--- /dev/null
+++ b/style.css
@@ -0,0 +1,48 @@
+body {
+ background-color: black;
+
+ animation-name: textColorPalette;
+ animation-duration: .4s;
+ animation-iteration-count: infinite;
+}
+
+.container {
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: .5rem;
+}
+
+.game {
+ width: 80%;
+ height: 100%;
+}
+
+.feats {
+}
+
+.feat {
+ text-align: left;
+ display: flex;
+ justify-content: left;
+ align-items: center;
+}
+
+@keyframes textColorPalette {
+ 0% {
+ color: #bd00ff;
+ }
+ 25% {
+ color: #fcee0c;
+ }
+ 50% {
+ color: #00ff9f;
+ }
+ 75% {
+ color: #d600ff;
+ }
+ 100% {
+ color: #00b8ff;
+ }
+}