-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex2.css
More file actions
77 lines (68 loc) · 1.36 KB
/
flex2.css
File metadata and controls
77 lines (68 loc) · 1.36 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
* {
border-radius:0px;
background-color: rgb(255, 255, 255);
color: rgb(0, 0, 0);
}
.container{
display: flex;
border:2px dashed red;
flex-direction: column ;
justify-content: right;
width: 100%;
flex-wrap: wrap ;
}
.one{
border:1px solid rgb(0, 0, 0);
color: rgb(0, 0, 0);
background-color: rgb(250, 73, 50);
padding: 50px;
text-align: center;
margin:0px;
font-weight: 900;
}
.two{
border:1px solid rgb(0, 0, 0);
width: 60%;
color: rgb(0, 0, 0);
background-color: rgb(196, 230, 233);
padding: 50px;
text-align: center;
margin:0px;
font-weight:700;
}
.three{
width: 40%;
border:1px solid rgb(0, 0, 0);
color: rgb(0, 0, 0);
background-color: rgb(124, 255, 152);
padding: 50px;
text-align: center;
margin:0px;
font-weight:700;
}
.parent{
display: flex;
}
.four{
width: 35%;
border:1px solid rgb(0, 0, 0);
color: rgb(0, 0, 0);
background-color: rgb(255, 251, 45);
padding: 50px;
text-align: center;
margin:0px;
font-weight:700;
}
.five{
width: 50%;
border:1px solid rgb(0, 0, 0);
color: rgb(0, 0, 0);
background-color: rgb(167, 60, 216);
padding: 50px;
text-align: center;
margin:0px;
font-weight:700;
}
.parent2{
display: flex;
}