-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
76 lines (64 loc) · 1.04 KB
/
popup.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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500&display=swap');
* {
font-size: 12px;
font-family: 'Noto Sans SC';
font-weight: 500;
}
#textarea {
margin-top: 10px;
font-size: 14px;
width: 99%;
display: block;
margin-left: auto;
margin-right: auto;
resize: none;
}
#keyboard {
display: flex;
flex-flow: column;
margin-left: auto;
margin-right: auto;
}
.row {
display: flex;
flex-flow: row;
height: 48px;
}
.key {
min-width: 28px;
margin: 3px;
padding: 0px 6px;
border: .1px solid rgb(211, 211, 211);
border-radius: 5px;
}
.md {
min-width: 75px;
}
.long {
min-width: 99px;
}
.xl {
width: 250px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#disabled {
background-color: rgba(94, 94, 94, 0.719);
color: white;
}
#message {
margin: 15px 0 15px 3px;
}
#copied {
background-color: rgb(104, 167, 104);
color: rgb(255, 255, 255);
padding: 4px 10px;
border-radius: 20px;
}
.key:not(#disabled):hover
{
background-color: rgb(140, 210, 223);
cursor: pointer;
color: white;
}