summary refs log tree commit diff stats
path: root/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'index.css')
-rw-r--r--index.css75
1 files changed, 75 insertions, 0 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..f659a89
--- /dev/null
+++ b/index.css
@@ -0,0 +1,75 @@
+@font-face {
+  font-family: windows;
+  src: url("Windows Regular.ttf");
+}
+
+html {
+  background-image: url(img/background.png);
+  width: 100%;
+  height: 100%;
+  color: white;
+}
+p,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+  font-family: windows;
+}
+.field {
+  width: 25%;
+  display: inline-block;
+  padding-left: 4em;
+  padding-right: 4em;
+  text-align: center;
+}
+.field > img {
+  width: 5rem;
+  height: 5rem;
+}
+a {
+  color: -webkit-link;
+  text-decoration: underline wavy -webkit-link;
+}
+
+a > :is(p, h1, h2, h3, h4, h5, h6) {
+  color: -webkit-link;
+}
+
+marquee {
+  width: 100%;
+}
+
+#main {
+  width: 100%;
+  margin: auto;
+}
+
+.logo {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+  width: 40%;
+}
+
+.box {
+  background-color: whitesmoke;
+  border: 5px solid darkcyan;
+  width: 60%;
+  text-align: center;
+  margin: auto;
+}
+
+.box > ul {
+  color: black;
+}
+
+.box > :is(p, h1, h2, h3, h4, h5, h6) {
+  color: black;
+}
+
+.box > ul > li > :is(p, h1, h2, h3, h4, h5, h6) {
+  color: black;
+}