X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fsass%2Frounds.scss;h=d8d117db805f729859c1a0b4bf98c883401369d5;hb=a439a2eb428e8f881fd6ed6309e600a664c9b3de;hp=ee38c8237e287b9c139140a5a2a5900fc3ef3774;hpb=0f171dfffd9c0c2cc895c9f282c5f4550844cc5a;p=alttp.git diff --git a/resources/sass/rounds.scss b/resources/sass/rounds.scss index ee38c82..d8d117d 100644 --- a/resources/sass/rounds.scss +++ b/resources/sass/rounds.scss @@ -8,6 +8,10 @@ border-radius: 1ex; padding: 1ex; + &.has-not-finished { + box-shadow: 0 0 0.25rem $primary; + } + .info { padding-right: 1rem; min-width: 13em; @@ -15,6 +19,36 @@ .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 { + display: inline-flex; + flex-direction: row; + flex-wrap: nowrap; + 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; +}