This repository has been archived by the owner on Jul 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
166 lines (145 loc) · 2.87 KB
/
demo.css
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
html, body, h1, form, fieldset, legend, ol, li {
margin: 0;
padding: 0;
width: 400px;
}
body {
background: #ffffff;
color: #111111;
font-family: Georgia, "Times New Roman", Times, serif;
padding: 20px;
}
#upload, #list, #download, #create {
display: none;
}
header {
background: #9cbc2c;
-moz-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
padding: 2px;
height: 40px;
width: 436px;
}
header img {
float: left;
width: 50px;
margin-left: 5px;
}
header div {
text-align: center;
width: 436px;
height: 40px;
position: relative;
}
header div h1 {
position: absolute;
bottom: 0;
right: 5px;
}
form {
background: #9cbc2c;
-moz-border-radius: 0 0 5px 5px;
-webkit-border-radius: 0 0 5px 5px;
border-radius: 0 0 5px 5px;
padding: 20px;
}
form fieldset {
border: none;
margin-bottom: 10px;
}
form fieldset:last-of-type {
margin-bottom: 0;
}
form fieldset legend {
color: #384313;
font-size: 16px;
font-weight: bold;
padding-bottom: 10px;
text-shadow: 0 1px 1px #c0d576;
}
form fieldset legend {
color: #111111;
font-size: 13px;
font-weight: normal;
padding-bottom: 0;
}
form button {
background: #384313;
border: none;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
border-radius: 8px;
color: #ffffff;
font: 16px Georgia, "Times New Roman", Times, serif;
margin: auto;
margin-top: 10px;
padding: 7px 25px;
text-shadow: 0 1px 1px #000000;
}
form button:hover {
background: #1e2506;
cursor: pointer;
}
#authinfo form button, #create form button {
display: block;
}
#authinfo form fieldset ol li, #create form fieldset ol li {
background: #b9cf6a;
background: rgba(255,255,255,.3);
border-color: #e3ebc3;
border-color: rgba(255,255,255,.6);
border-style: solid;
border-width: 2px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
line-height: 30px;
list-style: none;
padding: 5px 10px;
margin-bottom: 2px;
}
fieldset#buttons ol li {
list-style: none;
padding: 5px 5px;
display: inline;
}
fieldset#buttons button {
margin: 5px auto;
padding: 7px 8px;
}
#list form {
padding-top: 0px;
}
#list fieldset {
border: 1px;
border-style: solid;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-color: #e3ebc3;
border-color: rgba(255,255,255,.6);
text-align: center;
}
ul.files li {
width: 320px;
}
ul li input {
margin-left: 0;
z-index: 2;
cursor: pointer;
display: none;
}
ul li label {
cursor: pointer;
display: block;
text-align: left;
}
ul.files {
list-style-type: square;
text-align: left;
}
ul.containers {
width: 360px;
}