forked from cssapply/CSSApply
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtestcase.css
More file actions
55 lines (43 loc) · 688 Bytes
/
testcase.css
File metadata and controls
55 lines (43 loc) · 688 Bytes
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
.classname,
#identifier {
width: 800px;
height: 2em
}
.alpha .beta {
width: 600px
}
.jon.suzi {
width: 600px
}
.classname:hover {
width: 800px;
}
.short-hex-colors {
color: #F73;
background-color: #F73
}
.long-hex-colors {
color: #FF7733;
background-color: #FF7733
}
.named-color {
color: red;
background-color: red
}
.named-invalid-color {
color: polkadot;
background-color: polkadot
}
.fn-color-rgb {
color: rgb(255, 0, 255);
background-color: rgb(255, 0, 255);
}
.fn-color-rgba {
color: rgba(255, 255, 255, 0.5);
background-color: rgba(255, 255, 255, 0.5);
}
.font-props {
font-weight: bold;
font-size: 12pt;
font-style: italic;
}