blob: a6031dc44ab496f4c58401809d4e9f634a501760 (
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
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
|
tr:hover{
background: #CCCCCC;
}
tr{
width: 100%;
border: none;
}
table{
width: 100%
}
#icon{
width: 35px;
}
table tr td {
padding-left: 0;
padding-right: 0;
height: 30px;
margin: 0;
border: none;
}
a{
text-decoration: none;
color: black;
/* outline: 1px solid red;*/
}
td{
/* outline: 1px solid black;*/
}
#menu{
position: fixed;
top:0;
right: 0;
margin-top: 10px;
margin-right: 30px;
}
.menu-item{
height: 45px;
width: 45px;
margin: 10px;
display:inline-block;
}
.menu-item:hover{
margin: 10px;
background:#2669AB;
height: 45px;
width: 45px;
border-radius: 10px;
box-shadow: 3px -3px 5px black;
}
#new-folder-bg{
width: 100%;
height: 100%;
background: white;
position: fixed;
z-index: 99;
top: 0px;
opacity: 0.75;
visibility: hidden;
}
#new-folder-form{
}
#new-folder-area{
height: 190px;
width: 400px;
position: fixed;
top: 50%;
margin-top: -100px;
padding: 10px;
left: 50%;
margin-left: -200px;
border: 1px solid black;
}
input.new-folder-input[type=text], input.new-folder-input[type=checkbox]{
border: none;
box-shadow: inset 0px 0px 1px 1px #1F3D4C;
border-radius: 0;
height: 40px;
font-size: 25px;
margin-top: 15px;
width: 395px;
display:block;
padding-left: 5px;
}
input.new-folder-input:focus{
background: #D6E0E5
}
#button-input{
height: 40px;
width: 120px;
display:inline;
border: none;
box-shadow: inset 0px 0px 1px 1px #1F3D4C;
border-radius: 0;
font-size: 25px;
margin-top: 15px;
}
|