This repository has been archived by the owner on Nov 18, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpopup.css
94 lines (94 loc) · 1.95 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
body {
font: 10pt "Lucida Grande", Helvetica, Arial, sans-serif;
width: 350px;
border-radius: 10px;
color: #303942;
margin-right: 20px;
user-select: none;
-webkit-user-select: none;
cursor: default;
}
table {
margin: 0;
width: 100%;
}
.label {
text-align: right;
padding-right: 5px;
}
#secret, #url, #username, #result {
width: 100%;
}
.length, #length {
font-size: 8pt;
color: #999;
}
.centered {
text-align: center;
}
#result-box {
display: none;
text-align: center;
}
#warning {
display: none;
font-size: 10px;
color: #cc0011;
padding: 3px 0;
text-align: center;
margin-top: -10px;
}
input {
border: 1px solid rgba(0, 0, 0, 0.25);
padding: 3px 3px;
border-radius: 2px;
outline: none;
}
input:focus {
border-color: #4D90FE;
}
.buttons {
text-align: right;
}
button {
/*
background: #f4f4f4 -webkit-gradient(linear,left top,left bottom,
color-stop(0, #fafafa),color-stop(1, #ccc));
border: 1px solid #aaa;
border-radius: 5px;
padding: 3px 10px;
margin-top: 3px;
text-shadow: 0 1px #f4f4f4;
*/
background-image: -webkit-linear-gradient(#e8e8e8, #e8e8e8 38%, #d8d8d8);
background-color: rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.95);
color: black;
text-shadow: 0 1px 0 #F0F0F0;
border: 1px solid rgba(0, 0, 0, 0.25);
border-radius: 2px;
margin: 0 1px 0 0;
outline: none;
}
button:focus {
border-color: #4D90FE;
}
button:hover {
background-image: -webkit-linear-gradient(#F0F0F0, #F0F0F0 38%, #E0E0E0);
border: 1px solid rgba(0, 0, 0, 0.3);
}
button:active {
/*background: #f4f4f4 -webkit-gradient(linear,left top,left bottom,
color-stop(1, #ddd),color-stop(0, #bbb))
*/
background-image: none;
background-color: rgba(0, 0, 0, 0.15);
box-shadow: none;
}
.gray {
color:#666;
}
.working {
font-size: 9pt;
color: #ccc;
}