X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fsass%2Frounds.scss;h=0afc0ae1c5fab82f4fa28c92ad96851d90f40e16;hb=4e0ec8d1eb407632813e0e5695a7c5c1538c95df;hp=dff973ec23dd128e63bdb31ab02f889a4d04e2fa;hpb=edd0e97bfdc544114f30bf4c13a929631c44a555;p=alttp.git diff --git a/resources/sass/rounds.scss b/resources/sass/rounds.scss index dff973e..0afc0ae 100644 --- a/resources/sass/rounds.scss +++ b/resources/sass/rounds.scss @@ -1,8 +1,39 @@ .rounds { + margin: 1rem 0; + padding: 0; + .round { margin: 1rem 0; border: thin solid $secondary; border-radius: 1ex; padding: 1ex; + + .info { + padding-right: 1rem; + min-width: 13em; + + .date { + font-size: 125%; + } + + .seed-code, .btn { + 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; +}