diff --git a/knockoutwhistweb/public/images/img.png b/knockoutwhistweb/public/images/img.png new file mode 100644 index 0000000..d925d44 Binary files /dev/null and b/knockoutwhistweb/public/images/img.png differ diff --git a/knockoutwhistweb/public/stylesheets/main.css b/knockoutwhistweb/public/stylesheets/main.css index c269bec..dc68b2e 100644 --- a/knockoutwhistweb/public/stylesheets/main.css +++ b/knockoutwhistweb/public/stylesheets/main.css @@ -1,5 +1,7 @@ +@color: white; + body { - background-image: url("/assets/images/background.png"); + background-image: @background-image; } html, body { @@ -15,7 +17,7 @@ html, body { } #sessions a, h1, p { - color: white; + color: @color; font-size: 40px; font-family: Arial; } @@ -81,10 +83,10 @@ html, body { flex-direction: column; align-items: center; height: 0%; -} -#nextPlayers p { - margin-top: 0px; - margin-bottom: 0px; + p { + margin-top: 0px; + margin-bottom: 0px; + } } #invisible { visibility: hidden; diff --git a/knockoutwhistweb/public/stylesheets/main.less b/knockoutwhistweb/public/stylesheets/main.less new file mode 100644 index 0000000..3b365f9 --- /dev/null +++ b/knockoutwhistweb/public/stylesheets/main.less @@ -0,0 +1,2 @@ +@color: red; +@background-image: url("/assets/images/img.png"); \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index 4d375c9..0525aa1 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,4 +3,6 @@ addSbtPlugin("org.foundweekends.giter8" % "sbt-giter8-scaffold" % "0.18.0") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0") -addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1") \ No newline at end of file +addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1") + +addSbtPlugin("com.github.sbt" % "sbt-less" % "2.0.1")