diff options
author | Thomas Felber <felber@student.tugraz.at> | 2015-04-15 17:13:04 -0700 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2015-07-13 09:48:47 +0200 |
commit | 02d8f5c31877def18db70f72fdb54fe53b2c9f52 (patch) | |
tree | e843dfe4e520f68852018bc4807568b3aca53be7 /pdf-as-web/src/main/webapp/assets/css | |
parent | 21298359e6fe6eec9a4083f8ed8c23e88338b5ff (diff) | |
download | pdf-as-4-02d8f5c31877def18db70f72fdb54fe53b2c9f52.tar.gz pdf-as-4-02d8f5c31877def18db70f72fdb54fe53b2c9f52.tar.bz2 pdf-as-4-02d8f5c31877def18db70f72fdb54fe53b2c9f52.zip |
deleted jsPDF, added pdf.js, updated index.jsp + css and js
Diffstat (limited to 'pdf-as-web/src/main/webapp/assets/css')
-rw-r--r-- | pdf-as-web/src/main/webapp/assets/css/style.css | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/pdf-as-web/src/main/webapp/assets/css/style.css b/pdf-as-web/src/main/webapp/assets/css/style.css index 8849709f..1d8ddb5b 100644 --- a/pdf-as-web/src/main/webapp/assets/css/style.css +++ b/pdf-as-web/src/main/webapp/assets/css/style.css @@ -10,11 +10,11 @@ footer { clear: both; } -iframe { - border: none; +canvas { + border: 1px solid black; } -#leftMain { +#sidebar { float: left; margin-right: 1em; } @@ -50,6 +50,26 @@ iframe { height: 5%; } +#btnSign { + border-top-left-radius: 15px; + border-top-right-radius: 15px; + border-bottom-left-radius: 15px; + border-bottom-right-radius: 15px; + border: 2px solid; + border-color: #66A3FF; + background: #66A3FF; + box-shadow: 0px 0px 15px #333333; + margin-bottom: 1em; + width: 20em; +} + +#btnSign h3 { + color: #FFFFFF; + margin: 0px; + height: 2em; + text-align: center; +} + .center { display: flex; justify-content: center; @@ -68,8 +88,8 @@ iframe { } .container h3 { - border-top-left-radius: 13px; - border-top-right-radius: 13px; + border-top-left-radius: 11px; + border-top-right-radius: 11px; background: #66A3FF; color: #FFFFFF; text-align: center; @@ -80,3 +100,4 @@ iframe { .container fieldset { border: none; } + |