aboutsummaryrefslogtreecommitdiff
path: root/extension/src/index.css
blob: 9b18c8a36c0e428d5aee45e49684a989b812ba5a (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
* {
  box-sizing: border-box;
}

body {
  background-color: #242424;
  color: white;
  font-family: sans-serif;
}

/* Folder */
.folder {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 1px;
  border-color: #393939;
  padding: 2px;
  margin: 5px;
  padding: 10px;
}

.folder > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.folder > summary {
  font-weight: bold;
  font-size: 20px;
  margin: 5px;
  user-select: none
}

/* Bookmark */
.bookmark {
  display: flex;
  flex-direction: column;
  width: 125px;
  padding: 10px;
  margin: 5px;
}

.bookmark > img {
  padding: 15px;

}

.bookmark > span {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}

.bookmark:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

a {
  color: white;
  text-decoration: none;
}