X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fsass%2Frounds.scss;h=4ed13381d977a522b2c74a68776328c97dcbebdc;hb=3e970c52e6a46cf9db4f69c5bec9102da53c0744;hp=0afc0ae1c5fab82f4fa28c92ad96851d90f40e16;hpb=2daab77f3b549a6c88c4d1949b994e38dd6bd80f;p=alttp.git diff --git a/resources/sass/rounds.scss b/resources/sass/rounds.scss index 0afc0ae..4ed1338 100644 --- a/resources/sass/rounds.scss +++ b/resources/sass/rounds.scss @@ -4,10 +4,16 @@ .round { margin: 1rem 0; - border: thin solid $secondary; - border-radius: 1ex; + border: $border-width solid $secondary; + border-radius: $border-radius; + background: $gray-700; padding: 1ex; + &.has-not-finished { + border-color: $light; + box-shadow: 0 0 0.25rem 0.25rem $info; + } + .info { padding-right: 1rem; min-width: 13em; @@ -16,7 +22,18 @@ font-size: 125%; } - .seed-code, .btn { + .rolled-by { + display: inline-block; + vertical-align: middle; + + img { + max-height: 2rem; + width: auto; + border-radius: 50%; + } + } + + .seed-code, .btn, .rolled-by { margin-bottom: 1ex; } } @@ -24,9 +41,6 @@ } .seed-code { - display: inline-flex; - flex-direction: row; - flex-wrap: nowrap; align-items: center; align-content: center; justify-content: flex-start; @@ -36,4 +50,18 @@ background: $dark; color: $light; vertical-align: middle; + + &.game-alttpr { + display: inline-flex; + flex-direction: row; + flex-wrap: nowrap; + } + + &.game-smr { + display: inline-grid; + grid-template-columns: 1fr 1fr; + > span { + text-transform: uppercase; + } + } }