Skip to content

Commit

Permalink
cosmetics and version number is now better
Browse files Browse the repository at this point in the history
  • Loading branch information
BenBals committed Feb 2, 2015
1 parent 2f7464e commit 862dbea
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions assets/css/_dark.sass
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ body.dark .input-group > input

body.dark .settings, body.dark .info, body.dark .stats
background-color: $dark_background
color: $dark_primary

body .version
color: $dark_primary
6 changes: 5 additions & 1 deletion assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ body.dark .settings, body.dark .info, body.dark .stats {
background-color: #303030;
color: #FFC107; }

body .version {
color: #FFC107; }

* {
-webkit-transition: background-color 0.3s;
-moz-transition: background-color 0.3s;
Expand Down Expand Up @@ -245,7 +248,8 @@ input {
animation: slide-out 0.5s; }

.version {
margin-top: 30px; }
margin-top: 30px;
color: #21a1e1; }

.wrapper-more {
margin-top: 28px; }
Expand Down
1 change: 1 addition & 0 deletions assets/css/main.sass
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ input

.version
margin-top: 30px
color: $blue

.wrapper-more
margin-top: 28px
Expand Down
5 changes: 5 additions & 0 deletions assets/js/main.coffee
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version = '0.1.2'

selection = []
lektionen = []
currQ = {}
Expand Down Expand Up @@ -195,6 +197,9 @@ save_wrongs = () ->
true

$ ->
$('.version').html 'v' + version
console.log 'Stammformen by Ben Bals'
console.log 'Version: v' + version
$('.start').addClass('slide-in')
setTimeout ->
$('.start').removeClass('slide-in')
Expand Down
7 changes: 6 additions & 1 deletion assets/js/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions config.codekit
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@
"outputStyle": 0,
"syntaxCheckerStyle": 1
},
"\/index.html": {
"fileType": 8192,
"ignore": 1,
"ignoreWasSetByUser": 0,
"inputAbbreviatedPath": "\/index.html",
"outputAbbreviatedPath": "No Output Path",
"outputPathIsOutsideProject": 0,
"outputPathIsSetByUser": 0
},
"\/index.jade": {
"compileDebug": 1,
"fileType": 512,
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="start slide-in"><img src="assets/images/logo/logo.svg" alt="" class="hero-img"><br><a class="btn go">Go</a><br>
<div class="wrapper-settings"><a class="btn btn-underline btn-settings">Einstellungen</a></div>
<div class="wrapper-more"><a href="http://benbals.github.io/actiolatein" class="btn btn-underline">Mehr</a></div>
<p class="version">v0.1.1</p>
<p class="version">v0.1.2</p>
</div>
<div class="game dpn">
<div class="icon-wrapper"><i class="btn icon icons8-settings"></i><i class="btn icon icons8-info"></i><i class="btn icon icons8-line_chart"></i></div>
Expand Down
2 changes: 1 addition & 1 deletion index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ html
.wrapper-more
a.btn.btn-underline(href="http://benbals.github.io/actiolatein") Mehr

p.version v0.1.1
p.version v0.1.2

.game.dpn

Expand Down

0 comments on commit 862dbea

Please sign in to comment.