X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fsass%2Frounds.scss;h=907d6e946425c5fb9d1d12ad26e5f00d3901bd76;hb=b5a50d74cf042fa7fc874d8184dc37ae20bb74dd;hp=83949c925ab50a27d753fbd88b322ffcee577284;hpb=c59d0714d62f9028135cc9cff829d16b91e5fb4f;p=alttp.git diff --git a/resources/sass/rounds.scss b/resources/sass/rounds.scss index 83949c9..907d6e9 100644 --- a/resources/sass/rounds.scss +++ b/resources/sass/rounds.scss @@ -4,12 +4,75 @@ .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; + list-style: none; + + &.has-not-finished { + border-color: $light; + box-shadow: 0 0 0.25rem 0.25rem $info; + } .info { padding-right: 1rem; + min-width: 13em; + + .date { + font-size: 125%; + } + + .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; + } + } + } +} + +.seed-code { + align-items: center; + align-content: center; + justify-content: flex-start; + gap: 0.5ex; + padding: 0.5ex; + border-radius: 0.5ex; + 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; } } } + +.seed-code-input { + border: none; + padding: 0; + + &.game-smr { + display: grid; + grid-template-columns: 1fr 1fr; + } +}