-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (83 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (83 loc) · 1.55 KB
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
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.container {
text-align: center;
}
.custom-file-upload {
display: inline-block;
padding: 15px 20px;
cursor: pointer;
background-color: black;
color: white;
border-radius: 5px;
border: none;
font-weight: bold;
}
.custom-file-upload:hover {
background-color: rgb(67, 59, 59);
color: white;
}
input[type="file"] {
display: none;
}
#copyButton {
display: inline-block;
padding: 16.5px 20px;
cursor: pointer;
background-color: black;
color: white;
border-radius: 5px;
border: none;
font-weight: bold;
}
.tree {
list-style-type: none;
margin: 0;
padding: 0;
padding-top: 20px;
padding-left: 30px;
}
.tree ul {
list-style-type: none;
margin: 0;
padding-left: 30px;
}
.tree li {
padding: 4px 0;
position: relative;
padding-bottom: 7px;
}
.tree li::before {
content: "";
position: absolute;
top: 0;
left: -50px;
width: 1px;
height: calc(100% + 8px);
border-left: 1px solid #000;
}
.tree li::after {
content: "";
position: absolute;
top: 12px;
left: -50px;
width: 20px;
height: 1px;
border-bottom: 1px solid #000;
}
.tree li:last-child::before {
height: 12px;
}
#folderInput {
font-size: 1.2em;
}
li.folder::before {
content: "📁 ";
padding-left: 20px;
}
li.file::before {
content: "📄 ";
padding-left: 20px;
}