diff --git a/www/data/styles.css b/www/data/styles.css new file mode 100644 index 0000000..ba30911 --- /dev/null +++ b/www/data/styles.css @@ -0,0 +1,85 @@ +body { + margin: 0; +} + +.headerdiv { + background-color: #353; + display: flex; +} + +.headerdiv .logowrapper { + flex: initial; + margin: 0; + padding: 0; + height: 42px; +} + +.headerdiv > .logowrapper > .logo { + height: 30px; + margin: 4px 0px 8px 6px; + flex: initial; +} + +.tabrow { + display: flex; + flex: auto; +} + +.tab { + display: flex; + justify-content: center; + align-items: center; + + background-color: #888; + color: #FFF; + border: 1px solid black; + font-weight: bold; + + margin: 5px 10px; + padding: 0px 5px; + min-width: 64px; + vertical-align: center; + text-align: center; + + flex: initial; +} + +.tab_github { + background-color: #4078c0; + color: black; +} + +.tab_split { + flex: auto; +} + +.tab:hover { + cursor: pointer; + color: blue; + background-color: #999; +} + +.tab_github:hover { + background-color: #c9510c; + color: black; +} + +@media (max-width: 800px) { + + .logowrapper { + display: flex; + align-items: center; + justify-content: center; + } + + .headerdiv { + flex-direction: column; + } + + .tabrow { + flex-direction: column; + } + +} + + diff --git a/www/fragments/footer.php b/www/fragments/footer.php new file mode 100644 index 0000000..aca9fbb --- /dev/null +++ b/www/fragments/footer.php @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/www/fragments/header.php b/www/fragments/header.php new file mode 100644 index 0000000..790702e --- /dev/null +++ b/www/fragments/header.php @@ -0,0 +1,16 @@ +
+
+ +
+ +
+
Home
+
Project Euler
+
Blog
+
Programs
+
About
+
+
Github
+
+ +
\ No newline at end of file diff --git a/www/images/gitkeep b/www/images/.gitkeep similarity index 100% rename from www/images/gitkeep rename to www/images/.gitkeep diff --git a/www/images/logo.png b/www/images/logo.png new file mode 100644 index 0000000..947632d Binary files /dev/null and b/www/images/logo.png differ diff --git a/www/pages/main.php b/www/pages/main.php index cd2d5f6..eef8c04 100644 --- a/www/pages/main.php +++ b/www/pages/main.php @@ -1,12 +1,20 @@ - - Mikescher.com - - + + Mikescher.com + + + + -Hello World + + +
+ +
+ + \ No newline at end of file