layoutcss_parser/
dev.rs

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
pub const DEV_CSS: &str = r#"
area-l,
center-l,
box-l,
extender-l,
grid-l,
icon-l,
ledge-l,
outsider-l,
rack-l,
sidebar-l,
slider-l,
stack-l,
switcher-l,
ol,
ul,
dl,
div,
section,
article,
header,
footer,
main,
nav,
aside,
figure,
details,
input,
button,
textarea,
select,
form {
    outline: 2px solid black;
}

button,
input,
textarea,
select {
    background-color: gray;
}
"#;