diff options
author | jaseg <code@jaseg.net> | 2019-09-29 16:23:32 +0200 |
---|---|---|
committer | jaseg <code@jaseg.net> | 2019-09-29 16:23:32 +0200 |
commit | 04b34f73c1e0023ce4abdb9f1c9f0d9175247624 (patch) | |
tree | 9369f5d6c6eafbf9a8fbe82343af2e858a1af9cc /webapp/static | |
parent | e7ec6efd7f6a9f26b276c01500bdf941259e8a0a (diff) | |
download | pogojig-04b34f73c1e0023ce4abdb9f1c9f0d9175247624.tar.gz pogojig-04b34f73c1e0023ce4abdb9f1c9f0d9175247624.tar.bz2 pogojig-04b34f73c1e0023ce4abdb9f1c9f0d9175247624.zip |
Fix jigerator file output
Diffstat (limited to 'webapp/static')
-rw-r--r-- | webapp/static/style.css | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/webapp/static/style.css b/webapp/static/style.css index b9a696e..bebb762 100644 --- a/webapp/static/style.css +++ b/webapp/static/style.css @@ -122,7 +122,6 @@ body { a.btn { display: block; font-weight: 700; - background-color: #b50000; border-radius: 0.5em; padding: .4em 1em .4em 1em; margin-top: .2em; @@ -132,6 +131,17 @@ a.btn:active, a.btn:hover, a.btn:visited, a.btn:link { text-decoration: none; } +a.btn.red { + background-color: #b50000; + color: #fff; +} + +a.btn.green { + background-color: #00b500; + color: #fff; +} + + .workflow-images { display: flex; @@ -235,3 +245,7 @@ a.btn:active, a.btn:hover, a.btn:visited, a.btn:link { .render_output { padding-bottom: 8em; } + +#stl-target { + width: 100%; +} |