diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-04-29 21:29:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-29 21:29:53 -0400 |
| commit | dc4d0ce4e92454e16f40f0a84d00a8958b75740d (patch) | |
| tree | f6f2309d1800e795c7aee9fa541f6321e03619ed /print/resources/style.css | |
| parent | dc5c8c6314b11e1e194939dca3ab72f039a098d3 (diff) | |
| parent | 7a80e59d7751b6c228f00be4853b1443a6233840 (diff) | |
Merge pull request #155 from lexelby/lexelby-thread-names
set thread names in PDF printout
Diffstat (limited to 'print/resources/style.css')
| -rw-r--r-- | print/resources/style.css | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/print/resources/style.css b/print/resources/style.css index 97dee6a8..58ec8714 100644 --- a/print/resources/style.css +++ b/print/resources/style.css @@ -214,9 +214,6 @@ body { border-bottom: 1px solid rgb(188, 188, 188); border-bottom: 1px solid rgba(129, 129, 129, 0.5); box-shadow: 0 1px 1px 1px rgba(194, 191, 191, 0.5); - } - - #settings-ui div { text-align: left; font-size: 12pt; } @@ -238,6 +235,33 @@ body { margin-bottom: 1em; } + #modal-background { + display: none; + z-index: 3; + position: fixed; + background: black; + opacity: 0.5; + width: 100%; + height: 100%; + top: 0; + left: 0; + } + + #modal-content { + display: none; + z-index: 4; + position: fixed; + width: 50%; + height: 25%%; + top: 200px; + left: 25%; + background: rgb(255, 255, 255); + border-bottom: 1px solid rgb(188, 188, 188); + box-shadow: 0 1px 1px 1px rgb(194, 191, 191); + text-align: center; + font-size: 16pt; + } + /* Header */ |
