-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.css
72 lines (70 loc) · 1.53 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
* {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
}
body{
background: url(login\ background.jpg);
background-position: center;
background-size: cover;
width: 100%;
min-height: 100vh;
}
.container{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
form{
background: transparent;
border-radius: 16px ;
box-shadow: 0px 3px 15px rgba(204, 207, 212, 0.8);
display: flex;
flex-direction: column;
padding: 2vw 4vw;
width: 90%;
max-width: 600px;
border-radius: 10px;
}
input{
margin: 10px 0 10px;
border: transparent;
height: 30px;
border-radius: 5px;
}
textarea{
margin: 10px 0 10px;
border: 1px solid black;
resize: none;
border-radius: 5px;
}
form h3{
color: #fff;
font-weight: 800;
margin-bottom: 10px;
text-transform: capitalize;
font-family: 'Times New Roman', Times, serif;
}
button {
background-color: rgb(131,58,180);
border: none;
padding: auto;
height: 30px;
width: 40%;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
margin-left: 150px;
cursor: pointer;
font-size: 20px;
font-weight: 800;
text-transform: uppercase;
box-shadow: 0px 3px 15px rgba(204, 207, 212, 0.2);
}
button:active{
background-color: rgb(72, 186, 30);
border: none;
}