previous season ladders indicated after active results
[sc2-widget] / battle.css
index bed4a6ec10fdeae1eaa815a615af9763022c2be3..6fbf215728685b7e018e099f27bd0e5ce888e7f6 100644 (file)
@@ -3,6 +3,7 @@ body {
        color: #CCE6FF;
        font: 24px Source Sans Pro, Arial, sans-serif;
        margin-top: 1ex;
+       margin-bottom: -1ex;
 }
 
 h1 {
@@ -11,7 +12,7 @@ h1 {
        margin-top: 0;
 }
 h1:before {
-       background: url('https://static.starcraft2.com/dist/images/global/logos/img-sc2-nav-icon.png') no-repeat;
+       background: url(sc2icon.png) no-repeat;
        width: 50px;
        height: 50px;
        display: inline-block;
@@ -22,6 +23,7 @@ h1:before {
 .ladders {
        font: 700 .8em Eurostile, sans-serif;
        text-transform: uppercase;
+       margin: 1ex 0;
 }
 h1,
 strong {
@@ -63,7 +65,7 @@ li {
 figure {
        text-align: center;
        display: inline-block;
-       margin: 0;
+       margin: 0 0 1ex;
 }
 figcaption {
        margin-top: .2ex;
@@ -71,10 +73,12 @@ figcaption {
 img {
        border: 2px solid #122A42;
        background: #021120;
+       max-width: calc(49vw - .8em - 16px);
 }
 
 li, li img {
        transition: all 1s;
+       transition-property: opacity, color, background, border;
 }
 .select > li {
        opacity: .5;
@@ -91,7 +95,7 @@ li, li img {
 }
 
 .rank:before {
-       background: url("https://static.starcraft2.com/dist/images/none.c8b435f5900fab1ac7981cc9b56f6f44.png") no-repeat;
+       background: url(rank-none.png) no-repeat;
        background-position: -100px 0;
        width: 45px;
        height: 45px;
@@ -99,28 +103,53 @@ li, li img {
        content: '';
        vertical-align: middle;
 }
+.rank.bronze:before {
+       background-image: url(rank-bronze.png);
+}
 .rank.silver:before {
-       background-image: url("https://static.starcraft2.com/dist/images/silver.57bb73a131314d657135d2acf533d5e5.png");
+       background-image: url(rank-silver.png);
 }
 .rank.gold:before {
-       background-image: url("https://static.starcraft2.com/dist/images/gold.ef84260f60c780d9fa2d99f083668592.png");
+       background-image: url(rank-gold.png);
 }
 .rank.platinum:before {
-       background-image: url("https://static.starcraft2.com/dist/images/platinum.f407fcd425549f315098b0806ef8eac4.png");
+       background-image: url(rank-platinum.png);
 }
 .rank.diamond:before {
-       background-image: url("https://static.starcraft2.com/dist/images/diamond.6faad792f7b6bfc1c9f9bbeb5c289043.png");
+       background-image: url(rank-diamond.png);
 }
 .rank.master:before {
-       background-image: url("https://static.starcraft2.com/dist/images/master.51c47057b8cee504613a87cd84fba16b.png");
+       background-image: url(rank-master.png);
+}
+.rank.grandmaster:before {
+       background-image: url(rank-grandmaster.png);
+}
+.rank.tier3:before {
+       background-position: -100px -50px;
+}
+.rank.tier2:before {
+       background-position: -100px -100px;
+}
+.rank.tier1:before {
+       background-position: -100px -150px;
 }
 
-.ladders {
-       float: right;
-       margin: 0;
-       margin-top: -3ex;
+.old {
+       text-decoration: line-through;
+}
+.old:before {
+       opacity: .5;
 }
+
 .ladders li {
        float: none;
        margin-right: 0;
 }
+
+@media (min-width: 576px) {
+       .ladders {
+               float: right;
+               margin: 0;
+               margin-top: -3ex;
+       }
+}