blob: bfa854c2ee1696013ce47561323e6f13fa971283 (
plain)
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
|
#dirlisting {
text-align: left;
}
#create {
text-align: center;
padding: 2em 2em 0 2em;
}
#message {
padding: 2em;
font-weight: bold;
font-size: 120%;
color: #302;
background-color: #df2266;
border-radius: 1em;
margin: 1em auto;
width: 50%;
}
div.entry {
padding: 0.5em;
margin: 0.5em;
background-color: #4467ae55;
display: flex;
vertical-align: center;
}
.info, .permission {
padding: 0.5em;
background-color: #c8e;
border-radius: 0.5em;
margin-left: 0.5em;
text-decoration: none;
color: #453;
}
.button.delete {
background-color: #f79 !important;
}
.button.active {
background-color: #569;
}
.permission {
background-color: #366;
color: #acb;
}
.permission.disabled {
text-decoration: line-through;
background-color: #636;
}
a.entry {
text-decoration: none;
color: #aade88;
}
span.dirname {
font-weight: bold;
font-style: italic;
}
#topmenu, #action {
display: inline-flex;
margin: 1em;
}
|