fix merge conflict

This commit is contained in:
Gabriele Cirulli
2014-03-12 11:23:22 +01:00
7 changed files with 88 additions and 17 deletions
+15 -6
View File
@@ -49,9 +49,12 @@ h1.title {
top: -50px;
opacity: 0; } }
.score-container {
.scores-container {
float: right; }
.score-container, .best-container {
position: relative;
float: right;
display: inline-block;
background: #bbada0;
padding: 15px 25px;
font-size: 25px;
@@ -60,19 +63,19 @@ h1.title {
font-weight: bold;
border-radius: 3px;
color: white;
margin-top: 8px; }
.score-container:after {
margin-top: 8px;
text-align: center; }
.score-container:after, .best-container:after {
position: absolute;
width: 100%;
top: 10px;
left: 0;
content: "Score";
text-transform: uppercase;
font-size: 13px;
line-height: 13px;
text-align: center;
color: #eee4da; }
.score-container .score-addition {
.score-container .score-addition, .best-container .score-addition {
position: absolute;
right: 30px;
color: red;
@@ -86,6 +89,12 @@ h1.title {
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both; }
.score-container:after {
content: "Score"; }
.best-container:after {
content: "Best"; }
p {
margin-top: 0;
margin-bottom: 10px;
+15 -3
View File
@@ -58,11 +58,15 @@ h1.title {
}
}
.score-container {
.scores-container {
float: right;
}
.score-container, .best-container {
$height: 25px;
position: relative;
float: right;
display: inline-block;
background: $game-container-background;
padding: 15px 25px;
font-size: $height;
@@ -72,13 +76,13 @@ h1.title {
border-radius: 3px;
color: white;
margin-top: 8px;
text-align: center;
&:after {
position: absolute;
width: 100%;
top: 10px;
left: 0;
content: "Score";
text-transform: uppercase;
font-size: 13px;
line-height: 13px;
@@ -100,6 +104,14 @@ h1.title {
}
}
.score-container:after {
content: "Score";
}
.best-container:after {
content: "Best"
}
p {
margin-top: 0;
margin-bottom: 10px;