-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
69 lines (57 loc) · 982 Bytes
/
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
* {
margin:0;
padding:0;
color:#333;
}
body {
font-family: 'Segoe UI', Tahoma, sans-serif;
}
form {
padding:10px;
background: -webkit-linear-gradient(top, #ddd, #fff);
border-radius: 2px;
}
input {
font-family:'Segoe UI',Tahoma,sans-serif;
height:20px;
line-height:30px;
border-radius:2px;
display:inline-block;
}
input[type=text] {
padding:5px;
border:1px solid #333;
background:rgba(255,255,255,0.5);
}
input[type=text]:focus {
outline:none;
background:rgba(255,255,255,1);
}
input[type=submit] {
height:32px;
border:none;
background:rgba(255,255,255,1);
position:absolute;
margin:0 0 0 10px;
width:59px;
line-height:30px;
vertical-align:middle;
border:1px solid #333;
}
input[type=submit]:hover {
outline:1px solid #ccc;
outline-offset: -2px;
}
input[type=submit]:active {
background:#333;
color:#eee;
}
table {
width:400px;
}
thead tr {
border-bottom:1px solid #000;
}
#domain-box {
width:300px;
}