-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathflexbox.css
More file actions
52 lines (49 loc) · 842 Bytes
/
flexbox.css
File metadata and controls
52 lines (49 loc) · 842 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
.countries {
display: flex;
}
/* Add your own CSS code below */
.countries--first .country--brazil {
order: 5;
}
.countries--first .country--croatia {
order: 1;
}
.countries--first .country--ethiopia {
order: 2;
}
.countries--first .country--laos {
order: 3;
}
.countries--first .country--uganda {
order: 4;
}
.countries--second .country--brazil {
order: 4;
}
.countries--second .country--croatia {
order: 1;
}
.countries--second .country--ethiopia {
order: 2;
}
.countries--second .country--laos {
order: 3;
}
.countries--second .country--uganda {
order: 5;
}
.countries--third .country--brazil {
order: 5;
}
.countries--third .country--croatia {
order: 4;
}
.countries--third .country--ethiopia {
order: 3;
}
.countries--third .country--laos {
order: 2;
}
.countries--third .country--uganda {
order: 1;
}