Skip to content

Commit

Permalink
Add German language + fix on color pickup
Browse files Browse the repository at this point in the history
  • Loading branch information
gbiobob committed Apr 3, 2017
1 parent 0250824 commit c1bc11a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ ED-Board is a log book & more for commanders who want to keep informations about
## Languages available
* English
* French
* German
* Russian
* Spanish

Expand Down
4 changes: 4 additions & 0 deletions app/Files/edboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ function getUrlLang() {
return 'ru.ed-board.net';
break;

case 'de':
return 'de.ed-board.net';
break;

case 'es':
return 'es.ed-board.net';
break;
Expand Down
1 change: 1 addition & 0 deletions app/Files/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<a class="lang" data-lang="en">English</a>
<a class="lang" data-lang="fr">français</a>
<a class="lang" data-lang="ru">русский</a>
<a class="lang" data-lang="de">Deutsch</a>
<a class="lang" data-lang="es">Español</a>

<div class="color-chooser">
Expand Down
20 changes: 10 additions & 10 deletions app/Files/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ iframe#datas {
.color-chooser {
background: rgba(0,0,0,0.5);
padding: 7px;
margin: 40px 0 0;
margin: 20px 0 0;
text-align: center;
}

Expand Down Expand Up @@ -259,12 +259,12 @@ a.button.mini {
.lang {
display: block;
width: 80%;
margin: 10px auto;
margin: 7px auto;
background: #111;
color: #FD610F;
border: solid 1px #FD610F;
box-shadow: 1px 1px 3px #000;
padding: 10px;
padding: 5px;
text-align: center;
cursor: pointer;
}
Expand All @@ -276,17 +276,17 @@ a.button.mini {
/* Logo */

#header {
padding: 40px;
padding: 15px;
text-align: center;
}

.logo,
.logo:before,
.logo:after {
display : inline-block;
width : 60px;
height : 60px;
line-height : 60px;
width : 50px;
height : 50px;
line-height : 50px;
text-align : center;
border-radius: 50%;
}
Expand All @@ -295,7 +295,7 @@ a.button.mini {
font-family: 'Orbitron', sans-serif;
font-weight: 500;
background: #888;
font-size: 1.5rem;
font-size: 1.2rem;
border: solid 2px #A15F26;
background: rgba(100, 100, 100, 0.5);
vertical-align: middle;
Expand All @@ -319,9 +319,9 @@ a.button.mini {
color: #fff;
font-family: 'Orbitron', sans-serif;
font-weight: 500;
font-size: 1.7rem;
font-size: 1.2rem;
vertical-align: middle;
line-height: 70px;
line-height: 30px;
z-index: 2;
text-shadow: 0 0 5px #000;
}
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type":"WebApp",
"meta":{
"name":"E:D-Board",
"version":"1.1.3",
"version":"1.1.4",
"minimum-overwolf-version":"0.77.10",
"author":"Cmdr Biobob",
"icon":"IconMouseOver.png",
Expand Down

0 comments on commit c1bc11a

Please sign in to comment.