blob: 5ebc5f96ea9415b67989c7ab8da4abb85688895b (
plain)
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
|
body {
font-family: Tahoma, Arial, sans-serif;
font-size:10pt;
min-height:100%;
background:-moz-linear-gradient(top, #bcd, #fff);
margin:0; padding:0;
}
html {
height:100%;
margin:0;
padding:0;
}
h1 { font-family: ; text-align:center; color:#555; text-shadow:0px 0px 15px white; font-size:34pt; padding:0px; margin:20px 0px 0px 0px; letter-spacing:2px; }
label { display:table-cell; }
input { display:table-cell; }
li { margin:0; padding:5px; border-top: dotted 1px grey;}
li:first-child { border-top:none;}
#actions { width:600px; margin:10px auto; text-align:center; }
#redirect-list {
-moz-user-select: -moz-none;
border:solid 1px grey;
margin:auto;
padding:0px;
width: 700px;
list-style-type:none;
list-style-position:outside;
border-radius:3px;
box-shadow: 0px 0px 2px grey;
text-shadow: 1px 1px 1px white;
}
#config {
display:none;
position:fixed;
margin:auto;
}
button { border:solid 1px grey; border-radius:4px; background:-moz-linear-gradient(top, #ccc, #fff); cursor:pointer;}
h5 { text-align:center; margin:0px; padding-left:130px; }
.pattern, .redirectTo { color:blue; font-style:italic;}
.exampleUrl, .redirectResult { color:blue; }
#redirect-list li:nth-child(odd) { background:-moz-linear-gradient(top, #ddf, #cce); }
#redirect-list li:nth-child(even) { background-color:#fff; }
#redirect-form div { margin-top:5px; display:table-row; }
#redirect-form div label{ text-align:right; padding:6px;}
#redirect-form div input[type='text']{ margin-top:7px; width:300px; display:inline-block; }
.button-row { text-align:center; display:block !important;}
#redirect-form {
background:-moz-linear-gradient(top, #fff, #bcd);
border-radius:8px;
display:none;
position:fixed;
margin:0 auto;
padding:10px;
box-shadow: 0px 0px 4px black;
}
|