-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
91 lines (74 loc) · 1.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body {
width: 360px;
height: 300px;
padding: 5px;
}
.hideme {
display: none;
}
button {
height: 30px;
outline: none;
margin: 10px;
border: none;
border-radius: 2px;
padding: 6px 10px;
/* background-color: #2171ff;
color: #ffffff; */
}
button:hover {
cursor: pointer;
}
button.current {
box-shadow: 0 0 0 2px white, 0 0 0 4px black;
}
button#addToTogglBtn {
margin: 25px 0 0 0;
}
button#editSettingsBtn {
font-size: 25px;
padding: 0 10px;
}
.header {
display: flex;
}
/* .header img {
height: 44px;
width: 44px;
} */
.company-name {
font-size: 18px;
display: flex;
align-items: center;
}
#viewClient > label,
#viewCase > label {
font-size: 13px;
font-weight: bold;
border-bottom: 1px dashed;
}
#status {
color: green;
}
#clientValid {
color: green;
}
#clientInvalid {
color: red;
}
#viewClient,
#viewCase {
padding-top: 10px;
}
#viewCase {
border-top: 1px solid black;
}
#viewCase div:first-of-type {
padding-top: 8px;
}
.content label {
font-weight: bold;
display: inline-block;
width: 120px;
height: 20px;
}