-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpopup.css
71 lines (62 loc) · 1.32 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
body {
width: 250px;
}
#notify-wrapper {
padding: 5px;
}
#notify-header h1 {
font-size: 12px;
margin: 0;
margin-bottom: 10px;
}
.button {
font-family: Roboto, system-ui, sans-serif;
align-items: center;
border: 1px solid rgb( 218, 220, 224 );
border-radius: 4px;
box-sizing: border-box;
color: rgb( 26, 115, 232 );
cursor: pointer;
display: inline-flex;
flex-shrink: 0;
font-weight: 500;
height: 32px;
justify-content: center;
min-width: 5.14em;
outline-width: 0;
padding: 8px 16px;
position: relative;
user-select: none;
background: white;
margin: 10px 0 5px 10px;
}
.notify-buttons {
display: flex;
align-items: center;
justify-content: flex-end;
}
.button:hover {
background: rgba( 66, 133, 244, .04 );
border-color: 210, 227, 252;
}
.button.primary {
background: rgb( 26, 115, 232 );
color: #fff;
border-color: rgb( 26, 115, 232 );
}
.button.primary:hover {
background: rgba( 26, 115, 232, 0.9 );
box-shadow: 0 1px 2px 0 rgba( 66, 133, 244, .3),
0 1px 3px 1px rgba( 66, 133, 244, .15);
}
textarea {
border: 2px solid rgba( 26, 115, 232, 0.4 );
padding: 8px;
border-radius: 4px;
display: block;
width: 224px;
margin-top: 5px;
}
.notify-buttons p {
margin: 10px 0 5px 10px;
}