-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.css
More file actions
58 lines (50 loc) · 866 Bytes
/
flex.css
File metadata and controls
58 lines (50 loc) · 866 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
.box {
display: flex;
flex-wrap: wrap;
}
.row-11{
display:flex;
flex-wrap: wrap;
flex-basis: 100%;
justify-content: flex-start;
}
.row-12{
display:flex;
flex-basis: 100%;
justify-content: flex-start;
}
.row-1{
flex-basis: 110%;
display:flex;
justify-content: space-between;
}
.row-2{
display:flex;
flex-basis: 110%;
flex-direction: row;
justify-content: center;
overflow: hidden;
}
.item-1 {
/* background-color: red; */
width: 75%;
flex-basis: 75%;
}
.item-2 {
/* background-color: yellow; */
width: 25%;
flex-basis: 25%;
}
.item-3 {
width: 66.666667%;
flex-basis: 66.666667%;
}
.item {
flex-basis: 100%;
}
#split-line {
border-bottom: 1px solid #EEE;
}
#header-1 {
padding-top: 35px;
}