12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .round-summary {
- flex: 1;
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-around;
- align-items: center;
- }
- .round-summary__info-pane {
- display: flex;
- flex-flow: column nowrap;
- 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 {
- height: 50%;
- width: 50%;
- }
- .round-summary__guess {
- display: inline;
- }
- .round-summary__guess--timed-out {
- color: red;
- }
- .round-summary__target-point {
- display: inline;
- }
- .round-summary__round-score {
- display: inline;
- }
- .round-summary__total-score {
- display: inline;
- }
- .round-summary__button {
- margin-top: 5px;
- padding: 1em;
- }
|