X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=public%2Fcss%2Fstyle.css;fp=public%2Fcss%2Fstyle.css;h=80f143517cdcec139021d4754db533654ae2240c;hb=0ddba2456ee68202f1086a8f5db82ac5e2403b6c;hp=80f94ebef34ae7d7469ebb32f8007a982ad9946c;hpb=4dd9097db8745aa206ab6d3416ecb665a45ea8f4;p=lsl.git diff --git a/public/css/style.css b/public/css/style.css index 80f94eb..80f1435 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -4,17 +4,17 @@ margin: 0; margin-bottom: 25px; padding: 0; background-color: #ddd; -background-image: url("/images/perldancer-bg.jpg"); -background-repeat: no-repeat; -background-position: top left; - -font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana"; -font-size: 13px; +font-family: "Bitstream Vera Sans", sans-serif; +font-size: 12pt; color: #333; } +input { + font-size: 12pt; +} + h1 { -font-size: 28px; +font-size: 200%; color: #000; } @@ -47,106 +47,25 @@ float: right; width: 175px; } -#header, #about, #getting-started { +#about, #getting-started { padding-left: 75px; padding-right: 30px; } -#header { -background-image: url("/images/perldancer.jpg"); -background-repeat: no-repeat; -background-position: top left; -height: 64px; -} #header h1, #header h2 {margin: 0} +#header { font-weight: bold; } #header h2 { color: #888; font-weight: normal; -font-size: 16px; +font-size: 133%; } #about h3 { margin: 0; margin-bottom: 10px; -font-size: 14px; -} - -#about-content { -background-color: #ffd; -border: 1px solid #fc0; -margin-left: -11px; -} -#about-content table { -margin-top: 10px; -margin-bottom: 10px; -font-size: 11px; -border-collapse: collapse; -} -#about-content td { -padding: 10px; -padding-top: 3px; -padding-bottom: 3px; -} -#about-content td.name {color: #555} -#about-content td.value {color: #000} - -#about-content.failure { -background-color: #fcc; -border: 1px solid #f00; -} -#about-content.failure p { -margin: 0; -padding: 10px; -} - -#getting-started { -border-top: 1px solid #ccc; -margin-top: 25px; -padding-top: 15px; -} -#getting-started h1 { -margin: 0; -font-size: 20px; -} -#getting-started h2 { -margin: 0; -font-size: 14px; -font-weight: normal; -color: #333; -margin-bottom: 25px; -} -#getting-started ol { -margin-left: 0; -padding-left: 0; -} -#getting-started li { -font-size: 18px; -color: #888; -margin-bottom: 25px; -} -#getting-started li h2 { -margin: 0; -font-weight: normal; -font-size: 18px; -color: #333; -} -#getting-started li p { -color: #555; -font-size: 13px; -} - -#search { -margin: 0; -padding-top: 10px; -padding-bottom: 10px; -font-size: 11px; +font-size: 120%; } -#search input { -font-size: 11px; -margin: 2px; -} -#search-text {width: 170px} #sidebar ul { margin-left: 0; @@ -187,3 +106,54 @@ padding-right: 160px; font-family: sans-serif; font-size: 10px; } + +#lists-sidebar-item, .have-lists #no-lists-sidebar-item { + display: none; +} +.have-lists #lists-sidebar-item { display: block; } +.table-2-col { + display: grid; + grid-template-columns: auto auto; + column-gap: 1em; +} +.table-2-col > .arrow { + align-self: center; +} +#list-contents { display: none; } +.have-list #list-contents { + display: block; +} +#new-list-sidebar-item > div { + display: grid; + grid-template-columns: auto auto; + column-gap: 1ex; +} + +#busy-screen { + display: none; + opacity: 0; + transition: 1s; + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + background: hsla(0, 0%, 50%, 50%); + z-index: 800; +} +.blocked #busy-screen { + display: block; +} +.busy #busy-screen { + opacity: 1; +} +#busy-screen > div { + position: fixed; + top: 1ex; + right: 1ex; + padding: 1em; + display: inline-block; + background: hsla(0, 0%, 100%, 75%); + border-radius: 1ex; +} +