Skip to content
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Vanhoren committed Jun 10, 2013
1 parent 852935a commit 2be3801
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 59 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -3,6 +3,6 @@ Loading Quest

[See Loading Quest's web site for any information.](http://loadingquest.neoname.eu)

Version 1.0.0
Version 1.0.1

Loading Quest is distributed under the terms of the MIT License.
53 changes: 27 additions & 26 deletions loadingquest.css
@@ -1,4 +1,4 @@
@import url(http://fonts.googleapis.com/css?family=Irish+Grover);
@import url(http://fonts.googleapis.com/css?family=EB+Garamond);
.loadingquest {
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

Expand Down Expand Up @@ -183,7 +183,7 @@
* Remove most spacing between table cells.
*/

font-family: sans-serif;
font-family: 'EB Garamond', serif;
font-size: 16px;
color: #4b4d41;
position: absolute;
Expand Down Expand Up @@ -385,15 +385,6 @@
border-collapse: collapse;
border-spacing: 0;
}
.loadingquest .killing {
height: 235px;
padding: 15px;
border: 1px solid #4b4d41;
border-radius: 8px;
}
.loadingquest .killing_content {
height: 190px;
}
.loadingquest header {
position: relative;
}
Expand All @@ -404,35 +395,45 @@
width: 500px;
}
.loadingquest header div h1 {
font-family: 'Irish Grover', cursive;
font-family: 'EB Garamond', serif;
font-weight: normal;
font-size: 48px;
}
.loadingquest .infobox {
.loadingquest .killing {
height: 235px;
padding: 15px;
border: 1px solid #4b4d41;
border-radius: 8px;
}
.loadingquest .killing .killing_content {
height: 180px;
}
.loadingquest .killing .infobox {
display: table;
width: 100%;
}
.loadingquest .infobox .task,
.loadingquest .infobox .xp,
.loadingquest .infobox .level {
font-size: 11px;
.loadingquest .killing .infobox .task,
.loadingquest .killing .infobox .xp,
.loadingquest .killing .infobox .level {
font-size: 14px;
height: 15px;
display: table-row;
}
.loadingquest .infobox .task div,
.loadingquest .infobox .xp div,
.loadingquest .infobox .level div {
.loadingquest .killing .infobox .task div,
.loadingquest .killing .infobox .xp div,
.loadingquest .killing .infobox .level div {
display: table-cell;
vertical-align: middle;
}
.loadingquest .infobox .task .prog,
.loadingquest .infobox .xp .prog,
.loadingquest .infobox .level .prog {
.loadingquest .killing .infobox .task .prog,
.loadingquest .killing .infobox .xp .prog,
.loadingquest .killing .infobox .level .prog {
width: 100%;
padding: 3px 15px;
}
.loadingquest .infobox .task .prog div,
.loadingquest .infobox .xp .prog div,
.loadingquest .infobox .level .prog div {
.loadingquest .killing .infobox .task .prog div,
.loadingquest .killing .infobox .xp .prog div,
.loadingquest .killing .infobox .level .prog div {
background-color: #4b4d41;
width: 0px;
height: 9px;
Expand Down
68 changes: 36 additions & 32 deletions loadingquest.less
@@ -1,16 +1,19 @@


@import url(http://fonts.googleapis.com/css?family=EB+Garamond);

@back_color: #FFFFFF;
@text_color: #4B4D41;
@border_color: #4B4D41;

@import url(http://fonts.googleapis.com/css?family=Irish+Grover);
@base_font: 'EB Garamond', serif;
@title_font: @base_font;


.loadingquest {

.base_style() {
@import url(normalize.less);
font-family: sans-serif;
font-family: @base_font;
color: @text_color;
font-size: 16px;
}
Expand All @@ -30,17 +33,6 @@
border-radius: 8px;
opacity: 0.8;

.killing {
height: 235px;
padding: 15px;
border: 1px solid @border_color;
border-radius: 8px;
}

.killing_content {
height: 190px;
}

header {
position: relative;
div {
Expand All @@ -49,31 +41,43 @@
bottom: -10px;
width: 500px;
h1 {
font-family: 'Irish Grover', cursive;
font-family: @title_font;
font-weight: normal;
font-size: 48px;
}
}
}

.infobox {
display: table;
width: 100%;
.killing {
height: 235px;
padding: 15px;
border: 1px solid @border_color;
border-radius: 8px;

.task, .xp, .level {
font-size: 11px;
height: 15px;
display: table-row;
div {
display: table-cell;
vertical-align: middle;
}
.prog {
width: 100%;
padding: 3px 15px;
.killing_content {
height: 180px;
}

.infobox {
display: table;
width: 100%;

.task, .xp, .level {
font-size: 14px;
height: 15px;
display: table-row;
div {
background-color: @border_color;
width: 0px;
height: 9px;
display: table-cell;
vertical-align: middle;
}
.prog {
width: 100%;
padding: 3px 15px;
div {
background-color: @border_color;
width: 0px;
height: 9px;
}
}
}
}
Expand Down

0 comments on commit 2be3801

Please sign in to comment.