blob: 2c823b558e5f21660044ceb29494628412bd4e82 (
plain) (
blame)
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
|
body {
background-color: #1e1e1e;
color: white;
}
.folder {
display: flex;
flex-direction: column;
border-width: 2px;
border-style: solid;
border-color: black;
padding: 2px;
margin: 2px;
padding: 10px;
}
.folder > div {
display: flex;
flex-direction: row;
}
.bookmark > img{
padding: 10px;
}
.bookmark {
display: flex;
flex-direction: column;
width: 100px;
padding: 20px;
}
.bookmark:hover {
background-color: rgba(0, 0, 0, 0.5);
}
a {
color: white;
text-decoration: none;
}
|