-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.css
57 lines (49 loc) · 1.29 KB
/
app.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
body {
margin-left: 15px;
margin-right: 15px;
}
.hidden-btn {
display: none;
}
.hidden-btn-parent:hover .hidden-btn {
display: block;
}
.hidden-btn-parent:hover {
background-color: #fff3b5 !important;
}
.address-bar {
position: fixed;
height: 60px;
background-color: white;
z-index: 999;
padding-top: 15px;
margin-right: 15px;
/*margin-top: 30px;*/
}
.bottom-bar {
position: fixed;
bottom: 0;
padding-bottom: 10px;
margin-right: 15px;
background-color: white;
}
.files-box {
margin-top: 50px;
margin-bottom: 30px;
}
.overlay {
top: 5px;
margin-left: -12px;
}
.new-dir-input {
margin-bottom: -3px;
}
.new-dir-input{
width: 10px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}
/* When the input field gets focus, change its width to 100% */
.new-dir-input:focus {
width: 60vw;
}