|
@@ -5,6 +5,9 @@
|
|
|
}
|
|
|
|
|
|
.App {
|
|
|
+ background-color: #222;
|
|
|
+ color: #ccc;
|
|
|
+ font-weight: 500;
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
|
flex-flow: column nowrap;
|
|
@@ -62,13 +65,15 @@
|
|
|
border-radius: 0px;
|
|
|
border: none;
|
|
|
padding: 8px;
|
|
|
- background: #333;
|
|
|
+ background-color: #555;
|
|
|
color: #fff;
|
|
|
cursor: pointer;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
|
|
|
.btn:disabled {
|
|
|
color: #777;
|
|
|
+ background-color: #333;
|
|
|
cursor: default;
|
|
|
}
|
|
|
|
|
@@ -123,8 +128,8 @@
|
|
|
}
|
|
|
|
|
|
.pre-game__divider {
|
|
|
- margin-left: 0;
|
|
|
- margin-right: 0;
|
|
|
+ margin-left: 75px;
|
|
|
+ margin-right: 75px;
|
|
|
align-self: stretch;
|
|
|
}
|
|
|
|
|
@@ -160,14 +165,14 @@
|
|
|
}
|
|
|
|
|
|
.pre-round__button {
|
|
|
- padding: 0.2em;
|
|
|
+ padding: 1em;
|
|
|
margin: 0.2em;
|
|
|
}
|
|
|
|
|
|
.round-summary {
|
|
|
flex: 1;
|
|
|
display: flex;
|
|
|
- flex-flow: row nowrap;
|
|
|
+ flex-flow: column nowrap;
|
|
|
justify-content: space-around;
|
|
|
align-items: center;
|
|
|
}
|
|
@@ -175,8 +180,19 @@
|
|
|
.round-summary__info-pane {
|
|
|
display: flex;
|
|
|
flex-flow: column nowrap;
|
|
|
- justify-content: center;
|
|
|
- align-items: flex-start;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+@media only screen and (min-width: 600px) {
|
|
|
+ .round-summary {
|
|
|
+ flex-flow: row nowrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .round-summary__info-pane {
|
|
|
+ margin-left: 10px;
|
|
|
+ align-items: flex-start;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.round-summary__map {
|
|
@@ -204,7 +220,8 @@
|
|
|
}
|
|
|
|
|
|
.round-summary__button {
|
|
|
- display: inline;
|
|
|
+ margin-top: 5px;
|
|
|
+ padding: 1em;
|
|
|
}
|
|
|
|
|
|
.player-scores {
|
|
@@ -309,7 +326,6 @@
|
|
|
.game-panel {
|
|
|
display: block;
|
|
|
position: relative;
|
|
|
- flex-flow: row nowrap;
|
|
|
}
|
|
|
|
|
|
.game-panel {
|
|
@@ -320,15 +336,31 @@
|
|
|
.guess-pane {
|
|
|
position: absolute;
|
|
|
left: 10px;
|
|
|
- bottom: 30px;
|
|
|
+ bottom: 10px;
|
|
|
height: 200px;
|
|
|
width: 200px;
|
|
|
- flex-flow: column nowrap;
|
|
|
+ flex-flow: column-reverse nowrap;
|
|
|
z-index: 1;
|
|
|
opacity: .5;
|
|
|
transition: 1s;
|
|
|
}
|
|
|
|
|
|
+ .guess-pane__timer-submit-wrapper {
|
|
|
+ flex-flow: column-reverse nowrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .guess-pane>.guess-pane__timer-submit-wrapper>.guess-pane__submit {
|
|
|
+ visibility: hidden;
|
|
|
+ opacity: 0;
|
|
|
+ transition: 1s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .guess-pane:hover>.guess-pane__timer-submit-wrapper>.guess-pane__submit {
|
|
|
+ visibility: visible;
|
|
|
+ opacity: 1;
|
|
|
+ transition: 0.5s;
|
|
|
+ }
|
|
|
+
|
|
|
.guess-pane:hover {
|
|
|
height: 400px;
|
|
|
width: 400px;
|