-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.css
87 lines (84 loc) · 1.71 KB
/
feedback.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
.star{
display: inline-flex;
border: 2px solid rgb(161, 211, 96);
align-items: center;
flex-direction: column;
margin: auto;
background-color: antiquewhite;
padding: 10px;
}
h2{
text-align: center;
}
body{
background-color: aquamarine;
}
.head{
display: block;
text-align: center;
margin: 20px 0px;
}
.body{
display: block;
text-align: center;
}
.body .describe{
margin: 10px 10px 30px;
padding: 15px;
font-size: large;
background-color: rgb(184, 146, 190);
border-radius: 10px;
}
.body .submit {
background-color: rgb(154, 67, 236);
height: 30px;
width: 90px;
border-radius: 30px;
border: none;
box-shadow: 1px 1px 2px black;
font-size: 18px;
padding-top: 3px;
margin: auto;
}
.body .submit a{
color: rgba(245, 245, 245, 0.715);
text-decoration: none;
}
.back button{
border: none;
border-radius: 10px;
height: 30px;
background-color: rgb(206, 116, 116);
margin-left: 10px;
margin-top: 10px;
}
@media screen and (max-width:370px) {
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width:48vh;
background-color: rgb(61, 174, 174);
height: auto;
padding-bottom: 20px;
margin:25% auto 25%;
border: 2px solid red;
outline: 1px solid rgb(207, 207, 124);
border-radius: 5px;
}
.body .describe{
margin: 10px 20px;
width: 300px;
height: 130px;
background-color: rgb(155, 116, 161);
}
h2{
text-align: center;
}
.back{
position:relative;
bottom: 95px;
right: 155px;
}
}