This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathstyles.css
90 lines (79 loc) · 1.45 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
88
89
90
body {
font-family: sans-serif;
}
#selection {
display: flex;
align-items: center;
flex-direction: row;
}
#selection-outer {
border: 1px solid #ccc;
border-radius: 5px;
background: #eee;
padding: 0.5rem;
width: 360px;
margin-top: 2rem;
transition: opacity 200ms;
}
#selection-outer.empty {
opacity: 0;
}
h2 {
margin: 0;
/* margin-bottom: 1rem; */
font-size: 1rem;
text-align: center;
}
#selection-emoji {
font-family: 'Segoe UI Emoji', 'Segoe UI Symbol', 'Segoe UI',
'Apple Color Emoji', 'Twemoji Mozilla', 'Noto Color Emoji', 'EmojiOne Color',
'Android Emoji';
font-size: 3rem;
margin-right: 1rem;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
width: 4rem;
height: 4rem;
border: 1px solid #999;
background: #fff;
}
.popupContainer > button.closeButton {
z-index: 5000;
}
.trigger {
font-size: 2rem;
border: 1px solid #ccc;
border-radius: 5px;
width: 3.5rem;
height: 3.5rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.trigger img {
width: 2rem;
height: 2rem;
opacity: 0.25;
}
.triggerContainer {
margin: 2em;
display: flex;
flex-direction: row;
align-items: stretch;
gap: 0.25em;
}
.triggerContainer pre {
font-family: Menlo, 'Courier New', monospace;
border: 1px solid #ccc;
border-radius: 5px;
padding: 0.5em;
margin: 0;
min-height: 6em;
width: 30em;
}
.label {
font-size: 0.9em;
}