-
Notifications
You must be signed in to change notification settings - Fork 1
/
flex.css
115 lines (106 loc) · 1.68 KB
/
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.container{
width: 70%;
display: flex;
}
.main-header{
display: flex;
justify-content: center;
align-items: center;
}
.main-nav{
display: flex;
justify-content: space-around;
}
h1, .main-nav{
flex: 1;
}
.pull{
display: flex;
align-items: flex-start;
justify-content: center;
}
.happy{
flex-direction: column;
}
.mag :hover {
background-color:green;
}
.press{
/* display: flex; */
/* justify-content: space-around; */
/* align-items: left; */
/* flex-direction: row; */
/* flex: 1; */
}
.play{
display: flex;
justify-content: center;
align-items: center;
/* flex-direction: row; */
color: white;
}
.row{
flex-direction: column;
}
.footer{
justify-content: center;
}
.foot{
display: flex;
justify-content: center;
align-items: center;
}
footer ul{
display: flex;
justify-content: center;
/* align-items: flex-start; */
}
footer li{
margin-top: 30px;
margin-left: 20px;
margin-right: 40px;
justify-content: center;
}
.foot{
flex-direction: column;
}
@media(max-width: 769px) {
.play{
height: 600px;
}
.pull{
height: 450px;
}
.mine{
flex-direction: column;
justify-content: center;
align-items: center;
}
section{
height: 1850px;
}
.container{
width: 100%;
}
.main-nav{
margin-right: 30px;
}
.happy{
justify-content: center;
align-items: flex-start;
margin-left: 40px;
}
}
@media(max-width:500px) {
.container{
}
.hip{
justify-content: left;
}
.main-nav {
margin-top: 30px;
margin-right: 00px;
justify-content: center;
align-items: center;
}
}