-
Notifications
You must be signed in to change notification settings - Fork 0
/
phone.css
50 lines (50 loc) · 902 Bytes
/
phone.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
@media screen and (max-width:900px) {
.fcolumn{
display: flex;
flex-direction: column;
margin-bottom: 40px;
}
.fcolumn >div{
width: 100%;
}
.wni{
flex-direction: column;
width: 100%;
}
.gridc{
display: flex;
flex-direction: column;
}
}
@media screen and (max-width:600px) {
footer #container{
grid-template-columns: repeat(1,1fr);
}
footer #container div{
display: flex;
}
}
@media screen and (max-width:500px){
header{
display: none;
}
.flexc{
display: flex;
flex-direction: column;
align-items: center;
}
.flexc > div{
width: 90%;
margin: auto;
}
.font{
font-size: 1.3em;
}
.inputn{
display: flex;
flex-direction: column;
}
.wni input{
/* width: 100%; */
}
}