-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
48 lines (41 loc) · 668 Bytes
/
Copy pathpopup.css
File metadata and controls
48 lines (41 loc) · 668 Bytes
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
body {
width: 320px;
height: 350px;
font-family: "Ubuntu", sans-serif;
max-width: 300px;
}
#content {
max-width: 300px;
word-wrap: break-word;
background-color: rgba(174, 167, 159, 0.5);
border-radius: 5px;
padding: 10px;
padding-top: 2px;
}
#export {
background-color: #E95420;
}
#clear {
background-color: #77216F;
}
#qr {
background-color: black;
}
.counter {
text-align: center;
}
.actions {
display: flex;
}
.action {
color: white;
width: fit-content;
margin: 5px;
padding: 3px;
border-radius: 5px;
flex: 1;
text-align: center;
}
.action:hover {
cursor: pointer;
}