generated from JL978/chrome-extension-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
widget.css
70 lines (60 loc) · 1.13 KB
/
widget.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
.WidgetContainer {
position: fixed;
top: 10px;
left: 10px;
z-index: 10000;
background-color: white;
padding: 1rem;
padding-top: 0.75rem;
max-width: 300px;
border-radius: 0.75rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
color: #32302c;
}
.WidgetContainer h1 {
font-size: 1.1rem;
margin-bottom: 0.25em;
}
.NotesField {
width: 100%;
height: 5rem;
padding: 0.25rem 0.5rem;
border-radius: 0.35rem;
}
.TagsContainer {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.TagsContainer > label {
padding: 0.1em 1em;
border-radius: 1000px;
user-select: none;
font-size: 0.8rem;
}
.TagsContainer > label:hover {
cursor: pointer;
}
.TagsContainer > label > input {
display: none;
}
.TTNotionButton {
margin-top: 0.5rem;
padding: 0.25rem 0.65rem;
border-radius: 0.35rem;
background-color: #32302c;
color: white;
border: none;
font-weight: bold;
font-size: 0.9rem;
}
.TTNotionButton:hover {
cursor: pointer;
}
.TTNotionButton:disabled {
opacity: 0.5;
}
.TTNotionButton:disabled:hover {
cursor: not-allowed;
}