diff options
| -rwxr-xr-x | public/assets/stylesheets/app.css | 20 | ||||
| -rw-r--r-- | views/controls/reader/about-room.ejs | 16 | ||||
| -rw-r--r-- | views/reader.ejs | 2 |
3 files changed, 19 insertions, 19 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 793697c..e626d39 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -2076,25 +2076,20 @@ a[data-role="forgot-password"] { font-size: 13px; margin: 5px 0 0 0; } - .share { - position: fixed; - right: 0px; - bottom: 10px; - padding: 3px 10px 3px 4px; - background:rgba(255,255,255,0.1); - z-index: 2; + display:inline-block; + width:100%; + margin-bottom:5px; } - .share h2 { - font-weight: 300; - font-size: 18px; + font-weight: 400; + font-size: 13px; } .share a{ color: #017cfe; text-decoration: none; - font-size: 13px; + font-size: 12px; font-weight: 600; } .share a:nth-child(3){ @@ -2313,4 +2308,7 @@ position: relative; .footer a, .footer span { margin: 9px; } +#keyhint { + display:none; +} }
\ No newline at end of file diff --git a/views/controls/reader/about-room.ejs b/views/controls/reader/about-room.ejs index ab8fee6..c0ca9f7 100644 --- a/views/controls/reader/about-room.ejs +++ b/views/controls/reader/about-room.ejs @@ -4,18 +4,20 @@ <a href="[[- authorlink ]]">[[- author ]]</a> </h1> [[ if (description) { ]] - <span class="txt">[[- description ]]</span><br> + <span class="txt">[[- description ]]</span> [[ } ]] <span class="txt">Last modified [[- date ]]</span> + <div class="share"> + <h2>Share on–</h2> + <a href="#">Facebook</a> + <a href="#">Twitter</a> + </div> + [[ if (canEdit) { ]] - <br> <a href="[[- editlink ]]" class="btn warn marg">Edit Room</a> + <a href="[[- editlink ]]" class="btn warn marg">Edit Room</a> [[ } ]] </div> -<div class="share"> - <h2>Share on–</h2> - <a href="#">Facebook</a> - <a href="#">Twitter</a> -</div> + diff --git a/views/reader.ejs b/views/reader.ejs index ed5df1f..b110ffd 100644 --- a/views/reader.ejs +++ b/views/reader.ejs @@ -22,7 +22,7 @@ [[ include partials/confirm-modal ]] [[ include projects/layouts-modal ]] [[ include partials/sign-in ]] - +<img src="/assets/img/keys.png" id="keyhint"> </body> [[ include partials/scripts ]] </html> |
