commit 455bf2815f6e9da9d6ee0af6a890b2bd6c06a829 Author: gamemastr Date: Wed Aug 26 16:56:14 2015 -0700 First commit. diff --git a/index.html b/index.html new file mode 100644 index 0000000..e69de29 diff --git a/index.php b/index.php new file mode 100644 index 0000000..eefee55 --- /dev/null +++ b/index.php @@ -0,0 +1,49 @@ + + + + + + + + + + <?php echo $_title ?> + + + + + + + + +
+

Variables for web page

+ +
+
Site name: +
+
Site URL: +
+
Developer/Designer: +
+
Primary Colour: +
+
Secondary Colour: +
+ + + +
+ +
+ + + \ No newline at end of file diff --git a/make.php b/make.php new file mode 100644 index 0000000..dd4659e --- /dev/null +++ b/make.php @@ -0,0 +1,38 @@ + "; + */ + + echo $contents; + + $indexfile = fopen("index.html", "w"); + fwrite($indexfile, NULL); + fclose($indexfile); + + header('Content-Type: text/plain'); + header('Content-Disposition: attachment; filename=index.html'); + readfile("index.html"); + +?> \ No newline at end of file diff --git a/styling/css.css b/styling/css.css new file mode 100644 index 0000000..89fbd61 --- /dev/null +++ b/styling/css.css @@ -0,0 +1,49 @@ +/* Main element styling */ +*{ + margin: 0; + padding: 0; +} +body{ + font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif +} +h1{ + font-size: 3.5em; +} + +/* Div Styling */ +#header{ + padding-top:1%; + padding-bottom: 10px; + background-color: lightskyblue; + text-align: center; +} +.creation{ + padding-top: 30px; + text-align: center; +} +#var{ + padding: 5px; + line-height: 30px; +} + +/* Input Styling */ +*:focus { + outline: 0; +} +form{ + font-size: 125%; +} +input{ + padding:3px; + border: none; + border-bottom: solid 3px deepskyblue; + transition: border 0.2s; +} +input:focus, input.focus { + border-bottom: solid 3px dodgerblue; +} +button{ + padding: 10px; + border: none; + border-bottom: solid 3px deepskyblue; +} \ No newline at end of file diff --git a/template/template.html b/template/template.html new file mode 100644 index 0000000..c71fdfb --- /dev/null +++ b/template/template.html @@ -0,0 +1,47 @@ + + + + + rep_SNAME + + + + + + + + +
+

rep_SNAME

+
+
+
+

rep_URL is being worked on by rep_DEVNAME!

+
+ + \ No newline at end of file