-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
87 lines (75 loc) · 1.11 KB
/
styles.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
body {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
width: 100%;
max-width: 1200px;
padding: 0 20px;
box-sizing: border-box;
}
.search {
width: 100%;
font-size: 40px;
margin: 20px 0;
padding: 10px;
box-sizing: border-box;
border-radius: 8px;
border: 2px solid #DDD;
outline: none;
}
.search:focus {
border-color: #999;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
}
a {
text-decoration: none;
color: #333;
}
li {
font-size: 25px;
padding: 1em;
margin: 5px 0;
background-color: #EEE;
border-radius: 8px;
transition: background-color 0.2s;
display: flex;
align-items: center;
gap: 12px;
}
li:hover {
background-color: #E0E0E0;
}
.file-icon {
color: #666;
width: 24px;
text-align: center;
}
.file-details {
flex: 1;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}
.filename {
flex: 1;
color: #000;
font-weight: 500;
}
.filesize {
font-size: 0.8em;
color: #666;
white-space: nowrap;
}
.filepath {
color: #666;
font-weight: normal;
}