-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
114 lines (97 loc) · 1.97 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
width: 295px;
margin: 15px;
font-size: 15px;
font-style: normal;
background-color: white;
}
.txt-right {
text-align: right;
}
.f-right {
float: right;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.btn {
cursor: pointer;
display: inline-block;
-webkit-appearance: none!important;
border-radius: .125rem;
border: 1px solid #0079b8;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: center;
text-decoration: none;
text-transform: uppercase;
vertical-align: middle;
line-height: 1.5rem;
letter-spacing: .12em;
font-size: .7rem;
font-weight: 500;
height: 2rem;
padding: 0 .5rem;
background-color: transparent;
color: #0079b8;
margin: .25rem .5rem .25rem 0;
}
/*min-width: 3rem;*/
/*max-width: 15rem;*/
.btn-primary {
border-color: #2f8400;
background-color: #2f8400;
color: #fff;
}
.btn-primary .btn:hover, .btn.btn-primary:hover {
background-color: #266900;
color: #e1f1f6;
}
.btn-success {
border-color: #308300;
background-color: transparent;
color: #308300;
}
.btn-success .btn:hover,
.btn.btn-success:hover {
background-color: #dff0d0;
color: #1d5100;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default .btn:hover,
.btn.btn-default:hover {
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.block {
display: block;
width: 100%;
}
.input {
display: block;
width: 94%;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
padding: .25rem .5rem;
font-size: .875rem;
border-radius: .2rem;
margin-top: 6px;
}
.input.new-prop {
display: inline-block;
width: 84%;
}
.btn-remove-new-prop {
margin: 0 0 0 .25rem;
}