summary refs log tree commit diff stats
path: root/assets
diff options
context:
space:
mode:
Diffstat (limited to 'assets')
-rw-r--r--assets/Windows Regular.ttfbin0 -> 88840 bytes
-rw-r--r--assets/img/background.pngbin0 -> 2498889 bytes
-rw-r--r--assets/img/planets/Planet-1.pngbin0 -> 1885728 bytes
-rw-r--r--assets/img/planets/Planet-2.pngbin0 -> 1857869 bytes
-rw-r--r--assets/img/planets/Planet-3.pngbin0 -> 1738175 bytes
-rw-r--r--assets/img/planets/Planet-4.pngbin0 -> 1805249 bytes
-rw-r--r--assets/img/planets/Planet-5.pngbin0 -> 1932452 bytes
-rw-r--r--assets/img/uc.pngbin0 -> 126475 bytes
-rw-r--r--assets/img/wordart.pngbin0 -> 272965 bytes
-rw-r--r--assets/index.css97
10 files changed, 97 insertions, 0 deletions
diff --git a/assets/Windows Regular.ttf b/assets/Windows Regular.ttf
new file mode 100644
index 0000000..26abb3d
--- /dev/null
+++ b/assets/Windows Regular.ttf
Binary files differdiff --git a/assets/img/background.png b/assets/img/background.png
new file mode 100644
index 0000000..a6b2247
--- /dev/null
+++ b/assets/img/background.png
Binary files differdiff --git a/assets/img/planets/Planet-1.png b/assets/img/planets/Planet-1.png
new file mode 100644
index 0000000..daf403f
--- /dev/null
+++ b/assets/img/planets/Planet-1.png
Binary files differdiff --git a/assets/img/planets/Planet-2.png b/assets/img/planets/Planet-2.png
new file mode 100644
index 0000000..711144b
--- /dev/null
+++ b/assets/img/planets/Planet-2.png
Binary files differdiff --git a/assets/img/planets/Planet-3.png b/assets/img/planets/Planet-3.png
new file mode 100644
index 0000000..fd9bd87
--- /dev/null
+++ b/assets/img/planets/Planet-3.png
Binary files differdiff --git a/assets/img/planets/Planet-4.png b/assets/img/planets/Planet-4.png
new file mode 100644
index 0000000..704f109
--- /dev/null
+++ b/assets/img/planets/Planet-4.png
Binary files differdiff --git a/assets/img/planets/Planet-5.png b/assets/img/planets/Planet-5.png
new file mode 100644
index 0000000..097dc71
--- /dev/null
+++ b/assets/img/planets/Planet-5.png
Binary files differdiff --git a/assets/img/uc.png b/assets/img/uc.png
new file mode 100644
index 0000000..d51765b
--- /dev/null
+++ b/assets/img/uc.png
Binary files differdiff --git a/assets/img/wordart.png b/assets/img/wordart.png
new file mode 100644
index 0000000..a0c6b1d
--- /dev/null
+++ b/assets/img/wordart.png
Binary files differdiff --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;
+}