forked from bloopletech/rss2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·165 lines (131 loc) · 2.28 KB
/
style.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
* {
box-sizing: border-box;
}
body {
font-family: "Open Sans", Tahoma, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.4;
background-color: #ffffff;
color: #000000;
margin: 0px;
padding: 0px;
}
h1 {
margin: 0;
padding: 0;
font-size: 40px;
color: #ffffff;
}
h3 {
margin: 0 0 10px 0;
padding: 0;
font-size: 20px;
font-weight: bold;
}
hr { border: none; height: 1px; background-color: #808080; margin: 5px 0; }
hr.p-after { margin-bottom: 1.1em; }
header {
text-align: center;
padding-top: 19px;
height: 90px;
background: url(images/top1.png) repeat-x;
}
.mast {
font-size: 18px;
}
#mainbody {
margin: 20px;
}
p {
margin: 0 0 20px 0;
padding: 0;
}
form {
padding: 0px;
margin: 0px;
}
label {
display: block;
}
input, textarea {
font-size: 100%;
}
#url {
width: 100%;
}
input[type="text"], textarea, iframe {
border: 1px solid #aaa;
padding: 3px;
}
textarea {
width: 100%;
height: 100px;
}
iframe {
width: 100%;
height: 400px;
}
table {
border-collapse: collapse;
width: 800px;
margin-bottom: 20px;
}
@media screen and (max-width: 839px) {
table {
width: 100%;
}
}
table, tr, td {
border: none;
}
td {
padding: 0.5em 0.3em;
vertical-align: top;
border-bottom: 1px dotted #808080;
}
table td.l {
width: 12em;
text-align: right;
}
input.text { width: 30em; }
input.num { width: 3em; }
.results td {
display: none;
}
.advanced td {
display: none;
}
body.show-advanced .advanced td {
display: table-cell;
}
body.submitted .results td {
display: table-cell;
}
.actions {
text-align: right;
}
input[type="button"], input[type="submit"] {
display: inline-block;
margin: 0;
padding: 6px 12px;
border-radius: 4px;
text-align: center;
vertical-align: middle;
cursor: pointer;
user-select: none;
touch-action: manipulation;
}
input[type="button"] {
color: #ffffff;
background-color: #31b0d5;
border: 1px solid #269abc;
}
input[type="submit"] {
color: #ffffff;
background-color: #5cb85c;
border: 1px solid #4cae4c;
}
#showopt {
margin-right: 10px;
}
.footer { background-color: #ffffaa; padding: 3px; }