summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-02-25 00:27:31 +0300
committerAndrew Dolgov <[email protected]>2017-02-25 00:27:31 +0300
commit885224d569d535b7e63ab301e4fd6cdc71c5c49b (patch)
tree30316ac1023460a53b9920e61f11f10fa87f56d0 /css
initial
Diffstat (limited to 'css')
-rw-r--r--css/index.css9
-rw-r--r--css/read.css77
2 files changed, 86 insertions, 0 deletions
diff --git a/css/index.css b/css/index.css
new file mode 100644
index 0000000..58356ab
--- /dev/null
+++ b/css/index.css
@@ -0,0 +1,9 @@
+.thumb img {
+ max-height : 180px;
+}
+
+.caption div {
+ overflow : hidden;
+ text-overflow: ellipsis;
+ white-space : nowrap;
+}
diff --git a/css/read.css b/css/read.css
new file mode 100644
index 0000000..2aed428
--- /dev/null
+++ b/css/read.css
@@ -0,0 +1,77 @@
+.loading {
+ position : absolute;
+ color : #999;
+ top : 0px;
+ left : 0px;
+ height : 100%;
+ width : 100%;
+ z-index : 32;
+ text-align : center;
+ background : white;
+ padding : 16px;
+ font-size : 18px;
+ display : table;
+}
+.loading > div {
+ display : table-cell;
+ vertical-align : middle;
+}
+
+.header {
+ top : 5px;
+ left : 0px;
+ width : 100%;
+ height : 24px;
+}
+.footer {
+ bottom : 5px;
+ left : 0px;
+ width : 100%;
+ height : 24px;
+}
+.header, .footer {
+ position : absolute;
+ font-size : 13px;
+ display : table;
+ padding-left : 10px;
+ padding-right : 10px;
+ color : #999;
+}
+.header > *, .footer > * {
+ display : table-cell;
+ vertical-align : middle;
+}
+.header .title {
+ margin-left : 30px;
+}
+.footer .location {
+ cursor : pointer;
+ text-align : right;
+}
+.toolbar {
+ text-align : right;
+}
+.toolbar > * {
+ margin-left : 5px;
+}
+#reader {
+ position : absolute;
+ top : 32px;
+ bottom : 32px;
+ left : 64px;
+ right : 64px;
+}
+
+@media (max-width: 992px) {
+ #reader {
+ left : 32px;
+ right : 32px;
+ }
+}
+
+ul.toc_list {
+ height : 250px;
+ overflow : auto;
+}
+
+