-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflex.css
78 lines (64 loc) · 998 Bytes
/
flex.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body {
background: #000;
margin: 0;
padding: 0;
min-height: 100vh;
}
.mousy {
content: "";
display: block;
width: 100%;
/*height: 100%;*/
background: white;
position: absolute;
top: 0;
height: 30px;
}
.flexbox {
display: flex;
flex-direction: row;
gap: 1em;
max-width: 100%;
min-height: 10em;
justify-content: center;
align-items: center;
border: 1px solid green;
padding: 30px;
}
.flex-1{
content: "";
display: flex;
width: 11em;
min-height: 6em;
border: 1px solid lime;
transition: all 0.5s;
color: white;
text-align: center;
font-family: system-ui;
}
.flex-2 {
content: "";
display: flex;
width:11em;
min-height: 6em;
border: 1px solid red;
transition: all 0.5s;
color: white;
text-align: center;
font-family: system-ui;
}
.flex-3 {
content: "";
display: flex;
width: 12em;
min-height: 6em;
border: 1px solid orange;
transition: all 0.5s;
color: white;
text-align: center;
font-family: system-ui;
}
* {
margin: 0 0;
padding: 0 0;
}