diff options
author | mounderfod <mounderfod@gmail.com> | 2023-06-23 11:37:41 +0100 |
---|---|---|
committer | mounderfod <mounderfod@gmail.com> | 2023-06-23 11:37:41 +0100 |
commit | 1dcd417758a11f83bb5238d46a3e5da115dc702d (patch) | |
tree | c76b56f6933fb1254191a9f8aa1892c50af1cfc5 /assets | |
parent | 94dff8eadf78b24df253e419a5957ed3b9d9653f (diff) | |
download | website-1dcd417758a11f83bb5238d46a3e5da115dc702d.tar.gz |
Convert website to use Jekyll
Diffstat (limited to 'assets')
-rw-r--r-- | assets/Windows Regular.ttf | bin | 0 -> 88840 bytes | |||
-rw-r--r-- | assets/img/background.png | bin | 0 -> 2498889 bytes | |||
-rw-r--r-- | assets/img/planets/Planet-1.png | bin | 0 -> 1885728 bytes | |||
-rw-r--r-- | assets/img/planets/Planet-2.png | bin | 0 -> 1857869 bytes | |||
-rw-r--r-- | assets/img/planets/Planet-3.png | bin | 0 -> 1738175 bytes | |||
-rw-r--r-- | assets/img/planets/Planet-4.png | bin | 0 -> 1805249 bytes | |||
-rw-r--r-- | assets/img/planets/Planet-5.png | bin | 0 -> 1932452 bytes | |||
-rw-r--r-- | assets/img/uc.png | bin | 0 -> 126475 bytes | |||
-rw-r--r-- | assets/img/wordart.png | bin | 0 -> 272965 bytes | |||
-rw-r--r-- | assets/index.css | 97 |
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; +} |