summary refs log tree commit diff stats
path: root/assets/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/index.css')
-rw-r--r--assets/index.css97
1 files changed, 97 insertions, 0 deletions
diff --git a/assets/index.css b/assets/index.css
new file mode 100644
index 0000000..1fa9b34
--- /dev/null
+++ b/assets/index.css
@@ -0,0 +1,97 @@
+@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,
+li {
+  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-container {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+  width: 30%;
+}
+
+.logo {
+  width: 100%;
+}
+
+.box {
+  background-color: whitesmoke;
+  border: 5px solid darkcyan;
+  width: 60%;
+  text-align: center;
+  margin: auto;
+  padding: 10px;
+}
+
+.box > ul {
+  color: black;
+  list-style-position: inside;
+  padding: 0;
+}
+
+.box > :is(p, h1, h2, h3, h4, h5, h6) {
+  color: black;
+}
+
+.box > ul > li > :is(p, h1, h2, h3, h4, h5, h6) {
+  color: black;
+}
+
+pre,
+code {
+  color: green;
+  background-color: black;
+}
+
+pre {
+  padding: 5px;
+}
+
+:not(pre) > code {
+  padding: 5px;
+}