diff --git a/server/source/main.go b/server/source/main.go index 1a55873..90a5381 100755 --- a/server/source/main.go +++ b/server/source/main.go @@ -7,7 +7,7 @@ import ( const port string = ":8080" -var fileServer http.Handler = http.FileServer(http.Dir("./lib")) +var fileServer http.Handler = http.FileServer(http.Dir("./source")) func main() { fmt.Println("Serving on Port: 8080") diff --git a/source/main.js b/source/main.js index ab71f44..01f282b 100755 --- a/source/main.js +++ b/source/main.js @@ -1,3 +1,5 @@ +"use strict"; + function main() { document.createElement('div'); } diff --git a/source/theme/theme.css b/source/theme/theme.css index f87e96e..62d8214 100755 --- a/source/theme/theme.css +++ b/source/theme/theme.css @@ -1,4 +1,3 @@ -.classOne { - color: orange; - font-weight: bold; +body { + background: orange; } \ No newline at end of file