diff --git a/README.md b/README.md index 9c411bc..f9b5fe5 100755 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # IanSkinner1982.github.io -Imagine a making a website that is good. Couln't be me. +Imagine a making a website that is actually good. Couldn't be me. + +Some parts of this site (the navbar) have taken from the [NCX Programming Website](https://github.com/NCX-Programming/site). diff --git a/index.html b/index.html index b6968ff..26c73ec 100755 --- a/index.html +++ b/index.html @@ -3,27 +3,22 @@ - -
-

Welcome to my site!

-

This site doesn't really have any purpose right now, but feel free to look around. While you're here, why not join my Discord server?
(link below)

-

-

-
-
-

- + +

Welcome to my site!

+

Hey there. I'm Ian and this is my site. Here you can find some documentation for some of my programs, as well as information on other things I've done.

+ diff --git a/pages/programs/cc64.html b/pages/programs/cc64.html new file mode 100644 index 0000000..467b056 --- /dev/null +++ b/pages/programs/cc64.html @@ -0,0 +1,38 @@ + +IanSkinner1982's Website + + + + + + +

CC64 docs

+

+ Adding new buildings in v3: + First, add the new building data to the end of the STOREDAT file. The format should be as follows: +
+
Name (max 14 chars) +
Description (max 22 chars) +
Gain (cookies per second) +
Price
+
+
Now edit the program. You will need to change the maximum number of buildings (written as mb) you want minus one. This is set at the start of line 10. +
Next, look at line 2010. These determine the building data that will be displayed on each page. (a range of 0-4 will print data for buildings 0-4, and 5-9 for 5-9 and so on) SS is the page number on which these values will be printed. Make sure you have ifss>{page #}theni. Add/edit ranges as needed. +
(notes: page numbers start at 0, and ranges can be no bigger than 5) +
+
Lastly, edit line 3095 to be ifss={max page #+1}thenss={max page #}. +
+
If, after doing this, the screen becomes messed up, try changing the amount of {downs} in line 2555. Currently there isn't any code that selects the amount of {down}s needed depending on the number of items printed. (that may come later) Everything should now work. If you are experiencing any problems, try updating your CC64 version and repeating the steps. +

+ + \ No newline at end of file diff --git a/pages/programs/index.html b/pages/programs/index.html new file mode 100644 index 0000000..7f56384 --- /dev/null +++ b/pages/programs/index.html @@ -0,0 +1,26 @@ + +IanSkinner1982's Website + + + + + + +

Programs I'm working on

+ + + \ No newline at end of file diff --git a/pages/socialmedia/index.html b/pages/socialmedia/index.html new file mode 100644 index 0000000..2509924 --- /dev/null +++ b/pages/socialmedia/index.html @@ -0,0 +1,22 @@ + +IanSkinner1982's Website + + + + + + +

Links

+

+ + \ No newline at end of file diff --git a/style.css b/style.css index 8b13789..659aa60 100644 --- a/style.css +++ b/style.css @@ -1 +1,54 @@ - +body { + font-family: Calibri, Segoe UI, Helvetica, Arial, sans-serif; + margin: 0; + padding: 0; + background-color: #FCFBF1; +} +.nav ul { + list-style-type: none; + margin: 0; + padding: 0; + overflow: hidden; + background-color: #0B5EA7; + font-family: 'Montserrat', sans-serif; +} +.navstd { + float: left; +} +.navalt { + float: right; +} +.navstd a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} +.navalt a { + display: block; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; +} +.nav li a:hover { + background-color: #0B4F8A; +} +.navimg { + text-align: center; + float: right; + padding: 6px 14px; + object-fit: scale-down; +} +h1, h2, h3, h4, p { + margin-left: 8px; + margin-right: 8px; +} +code { + font-family: Consolas,"courier new"; + color: crimson; + background-color: #f1f1f1; + padding: 2px; + font-size: 70%; +} \ No newline at end of file