-
Notifications
You must be signed in to change notification settings - Fork 0
/
response.css
97 lines (82 loc) · 1.59 KB
/
response.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
@media screen and (min-width: 412px) and (max-width: 900px) {
.container h1 {
display: none;
}
.container p {
display: none;
}
.container {
margin-left: 0px;
margin-right: 20px;
}
.forms form {
display: inline-block;
padding: 15px;
background: #fff;
box-shadow: var(--box-shadow);
width: 370px;
height: 350px;
margin-top: 30%;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
.container img {
display: block;
width: 150px;
margin-left: 38%;
margin-right: auto;
margin-top: 20%;
}
.parent {
display: flex;
flex-direction: column;
}
.forms {
margin-top: 10%;
margin-right: 10%;
width: 100%;
margin-left: 10%;
}
}
@media screen and (min-width: 640px) and (max-width: 915px) {
.container h1 {
display: none;
}
.container p {
display: none;
}
.forms form {
display: inline-block;
padding: 15px;
background: #fff;
box-shadow: var(--box-shadow);
width: 370px;
height: 350px;
margin-top: 30%;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
.container img {
display: block;
width: 300px;
margin-left: 38%;
margin-right: auto;
margin-top: 5px;
}
.parent {
display: flex;
flex-direction: column;
}
.forms form {
margin-top: 5%;
margin-right: 50px;
width: 90%;
margin-left: 50px;
}
/* .forms form a {
margin-left: 3px;
text-align: center;
} */
}