forked from rodrigorm/csstidy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cssparse.css
118 lines (95 loc) · 1.15 KB
/
cssparse.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
@import url("cssparsed.css");
html, body {
font:0.8em Verdana,Helvetica,sans-serif;
background:#F8F8F6;
}
code {
font-size:1.2em;
}
div#rightcol {
padding-left:32em;
}
fieldset {
display:block;
margin:0.5em 0;
padding:1em;
border:solid #7284AB 2px;
}
fieldset.code_output {
display:inline;
}
h1 {
font-size:2em;
}
small {
font-size:0.7em;
}
fieldset#field_input {
float:left;
margin:0 0.5em 1em 0;
}
fieldset#options,fieldset#code_layout {
width:31em;
}
input#submit {
clear:both;
display:block;
margin:1em;
}
select {
margin:2px 0 0;
}
label.block {
display:block;
}
legend {
background:#c4E1C3;
padding:2px 4px;
border:dashed 1px;
}
textarea#css_text {
width:27em;
height:370px;
display:block;
margin-right:1em;
}
.help {
cursor:help;
}
p.important {
border:solid 1px red;
font-weight:bold;
padding:1em;
background:white;
}
p {
margin:1em 0;
}
dl {
padding-left:0.5em;
}
dt {
font-weight:bold;
margin:0;
float:left;
clear:both;
height:1.5em;
}
dd {
margin:0 0 0 4em;
height:1.5em;
}
fieldset#messages {
background:white;
padding:0 0 0 1em;
}
fieldset#messages div {
height:10em;
overflow:auto;
}
dd.Warning {
color:orange;
}
dd.Information {
color:green;
}