forked from jimschubert/NewTab-Redirect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.css
121 lines (105 loc) · 1.98 KB
/
options.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
115
116
117
118
119
120
121
@-webkit-keyframes slide-down-status {
from { top: -32px; }
to { top: 0; }
}
@-webkit-keyframes slide-up-status {
from { top: 0; }
to { top: -55px; }
}
.slideUp {
-webkit-animation-name:slide-up-status;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: 1;
}
.slideDown {
-webkit-animation-name:slide-down-status;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: 1;
}
body {
font-family:helvetica, arial, sans-serif;
font-size:80%;
margin:10px;
}
#header {
padding-bottom:1.5em;
padding-top:1.5em;
}
#header h1 {
font-size: 156%;
display:inline;
padding-bottom:43px;
padding-left:75px;
padding-top:40px;
background:url(icon128.png) no-repeat;
background-size:67px;
background-position:1px 18px;
}
.section-header {
background:#ebeff9;
border-top:1px solid #b5c7de;
font-size:99%;
padding:3px 0 2px 5px;
font-weight:bold;
margin-bottom:1em;
margin-top:4em;
}
.section-header.first {
margin-top:1em;
}
input[type="text"] {
width:300px;
}
#footer {
margin-top:4em;
}
span.desc-text {
display:block;
width: 250px;
}
div#status {
position:fixed;
height:32px;
width:220px;
margin-left:-110px;
top:0;
left:50%;
padding:4px;
z-index:1001;
font-size:15px;
color:#000;
background-color:#ebeff9;
display:none;
text-align:center;
text-shadow: 1px 2px 3px #b5c7de;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
border-right:1px solid #b5c7de;
border-bottom:1px solid #b5c7de;
border-left:1px solid #b5c7de;
}
ul.links {
padding:0;
margin:0;
width:200px;
float:left;
}
ul.links li {
list-style-type:none;
}
ul.horizontal-links {
padding:0;
margin:0;
white-space:nowrap;
list-style-type:none;
}
ul.horizontal-links li {
display:inline;
float:left;
}
ul.horizontal-links li a {
padding: 0.2em 1em;
}
.fix {
clear:both;
}