-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
63 lines (60 loc) · 983 Bytes
/
styles.css
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
59
60
61
62
63
.row-one, .row-two{
height: 40vh;
}
/*tablet and mobile responsivity*/
@media (min-width: 370px) and (max-width: 900px) {
.col-one{
display: flex;
order: 1;
}
.col-four{
display: flex;
order: 2;
}
.col-five{
display: flex;
order: 3;
flex-grow: 1;
}
.col-eight, .col-two, .col-three, .col-seven{
display: none;
}
.col-nine{
display: flex;
order: 4;
flex-grow: 1;
}
.col-six{
display: flex;
order: 5;
flex-grow: 1;
}
}
/*temporary*/
.col-one{
background-color: red;
}
.col-two{
background-color: lime;
}
.col-three{
background-color: pink;
}
.col-four{
background-color: aqua;
}
.col-five{
background-color: blue;
}
.col-six{
background-color: yellow;
}
.col-seven{
background-color: orange;
}
.col-eight{
background-color: purple;
}
.col-nine{
background-color: green;
}