forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_css_parser.css
More file actions
58 lines (50 loc) · 744 Bytes
/
Copy pathtest_css_parser.css
File metadata and controls
58 lines (50 loc) · 744 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
56
57
58
.window .content .btn textview {
width: 100px;
}
.window .content .btn .text {
height: 60px;
}
.window textview {
position: absolute;
}
#test-textview {
top: 12px;
}
.text {
left: 20px;
}
.window .content .btn:hover textview {
background-color: #f00;
}
.window .content .btn:hover .text {
background-size: contain;
}
#test-flex-auto {
flex: auto;
}
#test-flex-none {
flex: none;
}
#test-flex-initial {
flex: initial;
}
#test-flex-1 {
flex: 1;
}
#test-flex-100px {
flex: 100px;
}
#test-flex-1-100px {
flex: 1 100px;
}
#test-flex-0-0-100px {
flex: 0 0 100px;
}
#test-flex-box {
flex: 0 0 auto;
flex-flow: column nowrap;
justify-content: center;
justify-items: center;
align-items: flex-end;
align-content: flex-end;
}