-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeedback.css
More file actions
61 lines (55 loc) · 1.03 KB
/
feedback.css
File metadata and controls
61 lines (55 loc) · 1.03 KB
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
html{
font-size: 10px;
}
*{
padding:0;
margin:0;
box-sizing:content-box;
}
body{
background: #e4eff1;
}
.form-container{
height: 60rem;
width: 80rem;
margin: 5rem auto;
}
.form-container form{
height:80%;
width:60rem;
margin:auto;
display: flex;
flex-direction: column;
background-color: #C9F0FF;
padding: 3rem;
text-transform: capitalize;
border-radius: 3rem;
}
.form-container form h3{
text-align: center;
font-size: 2.5rem;
}
.form-container form label{
font-size: 1.3rem;
padding:0.3rem 0;
}
.form-container form input,textarea{
padding:.8rem;
border-radius: 0.2rem;
margin: 0.5rem 0px 0.5rem 0;
border:none;
box-shadow: 0.3rem 0.3rem 0.3rem 0 rgba(0, 0,0 ,0.3);
text-transform: capitalize;
font-size: 1rem;
}
.bttn {
padding:1rem;
font-size: 1rem;
background-color: #549bb7;
border: none;
border-radius: 1rem;
text-decoration-color: white;
text-align: center;
text-shadow: #e4eff1;
width: 30%;
}