-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 1.13 KB
/
style.css
File metadata and controls
44 lines (37 loc) · 1.13 KB
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
input.invalid {outline: 2px solid red;}
input.invalid + span:after {content: ' invalid'}
input.valid + span:after {content: ' valid'}
input.invalid, textarea.invalid {
background-image: url("images/cross.png");
}
input.valid, textarea.valid {
background-image: url(images/accept.png);
}
input, textarea {
background-position: right top;
background-repeat: no-repeat;
}
label, input, textarea {display:block}
label {margin-bottom: 5px;}
.error {color: red}
body {
background: #FAFAFA;
color: #444;
font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
padding:0;
margin:0;
font-size: 100%
}
header h1 {text-align: center;}
article {max-width: 35em; margin: 0 auto;}
pre {overflow: auto; display:block }
article, article h1 {display:block; padding: 5px 20px;}
article h1 {font-size:100%; background: #0D5995; color: white; margin: 0 -20px 5px -20px; }
article h1 .returns {float:right; font-style: italic; }
article h1 a {color: white}
.CodeMirror-wrapping {outline: 1px solid green; padding: 1em;}
.output {outline: 1px solid gray}
.ui-tabs .ui-tabs-hide {
position: absolute;
left: -10000px;
}