1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
html {
background: rgb(212, 117, 11);
background: linear-gradient(to bottom, rgb(212, 117, 11) 0%, rgb(212, 117, 11) 36%, rgb(239, 196, 24) 100%);
min-height: 100vh;
}
.container {
width: 80%;
margin: 0 auto;
}
.header {
padding: 10pt;
margin-bottom: 0;
}
.content {
padding: 8pt;
background: rgb(251, 241, 206);
font-family: Tahoma;
font-size: 16pt;
}
.content p { margin: 0 0 6pt 0; }
.controls {
padding: 8pt;
background: #FFF;
font-family: Tahoma;
font-size: 16pt;
}
.controls .buttons {
width: 100%;
max-width: 500pt;
margin: -8pt auto;
border: 0;
border-spacing: 0;
}
.controls .buttons td {
width: 50%;
text-align: center;
margin: 0;
padding: 0;
}
.controls .buttons a {
display: block;
height: 40pt;
line-height: 38pt;
vertical-align: middle;
color: #000;
text-decoration: none;
}
.controls .buttons a:hover {
background: #F3F3F3;
}
.modal {
margin-top: 10pt;
display: none;
}
.modal p { margin: 0 0 6pt 0; }
#create_directory input[type="text"], #upload_file input[type="file"] {
width: calc(100% - 2 * 5pt);
}
.modal input {
border: 1px solid #EEE;
padding: 5pt;
font-size: 12pt;
}
.modal input[type="submit"] {
display: block;
margin: 6pt auto;
background: #DDD;
border: 0;
}
.modal input[type="submit"]:hover {
background: #F3F3F3;
cursor: pointer;
}
td img { vertical-align: middle; height: 20px; }
.directory_name {
display: block;
padding-bottom: 6px;
}
.directory_name a { color: black; }
.directory_name a:hover { color: blue; }
#loading_message, #error_message {
margin: -8pt;
margin-bottom: 5pt;
padding: 4pt;
text-align: center;
}
#loading_message {
background: #99FF99;
}
#error_message {
background: #FF9999;
}
|