diff options
author | portix <none@none> | 2013-03-04 10:25:15 +0100 |
---|---|---|
committer | portix <none@none> | 2013-03-04 10:25:15 +0100 |
commit | 69cc2ce8bff1f3d8bdac9977230d18e6c31bfc57 (patch) | |
tree | a01b6b31b0d023de10d71be6837365c9b1169291 /html/local.html | |
parent | 14d0968e40b0b2e81bdea08410d59b04deb3bd15 (diff) | |
download | dwb-69cc2ce8bff1f3d8bdac9977230d18e6c31bfc57.zip |
Rename lib->html
--HG--
rename : lib/error.html => html/error.html
rename : lib/head.html => html/head.html
rename : lib/info.html => html/info.html
rename : lib/local.html => html/local.html
Diffstat (limited to 'html/local.html')
-rw-r--r-- | html/local.html | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/html/local.html b/html/local.html new file mode 100644 index 00000000..c40a64ac --- /dev/null +++ b/html/local.html @@ -0,0 +1,118 @@ +<html> +<head> + <title>%s</title> + <link rel='icon' type='image/x-icon' href="%s" > + <style type="text/css"> + body { + background : #ddd; + font: normal 12px helvetica; + } + #dwb_local_main_container { + top: 50px; + bottom: 50px; + margin-top: 30px; + background: #fff; + margin-left: auto; + margin-right: auto; + min-width: 600px; + max-width : 900px; + border: 1px solid #999; + -webkit-border-radius: 10px; + padding: 30px; + } + #dwb_local_headline { + width: 100%; + border-bottom: 1px solid #ddd; + } + #dwb_local_indexof { + font: bold 20px helvetica; + display: inline; + } + #dwb_local_checkbox_container { + position: relative; + float: right; + } + #dwb_local_filetable { + position: relative; + width: 94%; + margin: 3%; + font: 400 11px monospace; + } + #dwb_local_table_header { + font: bold 12px helvetica; + text-align: left; + width: 100%; + } + .dwb_local_regular a { + color : #000; + } + .dwb_local_fifo a { + color : #8b008b; + } + .dwb_local_blockdevice a { + color : #cd2626; + } + .dwb_local_character_device a { + color : #555; + } + .dwb_local_executable a { + color : #228b22; + } + .dwb_local_link a { + color : #cd3839; + } + .dwb_local_setuid a { + background-color : #f00; + color : #fff; + } + .dwb_local_sticky a { + background-color : #228b22; + color : #fff; + } + .dwb_local_table_row { + display : table-row; + } + .dwb_local_table_row > div { + display : table-cell; + padding-right: 15px; + } + #dwb_local_header_last_mod { + white-space: pre-wrap; + min-width: 120px; + } + a { + text-decoration: none; + } + a:hover { + text-decoration: underline; + } + </style> +</head> +<body> + <div id="dwb_local_main_container"> + <div id="dwb_local_headline"> + <div id="dwb_local_indexof"> + Index of %s + </div> + <div id="dwb_local_checkbox_container"> + <input id="dwb_local_checkbox" type="checkbox"> + Show hidden files + </input> + </div> + </div> + <div id="dwb_local_filetable" width="100%"> + <div class="dwb_local_table_row" id="dwb_local_table_header"> + <div class="dwb_local_header_permission">Permission </div> + <div class="dwb_local_header_link">Link</div> + <div class="dwb_local_header_user">User</div> + <div class="dwb_local_header_group">Group</div> + <div class="dwb_local_header_size">Size</div> + <div class="dwb_local_header_date">Date</div> + <div class="dwb_local_header_time">Time</div> + <div class="dwb_local_header_name">Name</div> + </div> + %s + </div> + </div> +</body> +</html> |