-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactform.css
101 lines (93 loc) · 1.79 KB
/
contactform.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
98
99
100
.fourthsection {
height: 100px;
}
.fourthsection{
height: 650px;
width: 100%;
background: rgb(0, 0, 0);
background: url('feedbg.png');
background-size: cover;
background-blend-mode: soft-light;
position: inherit;
color: rgb(0, 0, 0);
}
#feedback h1{
color : white;
}
#feedback{
display: flex;
align-items: center;
justify-content: center;
}
.Feedform{
height: 80vh;
width: 450px;
background: rgba(31, 30, 30, 0.4);
box-shadow: 0px 0px 8px 0px rgba(250, 250, 250, 0.7);
border-radius: 20px;
}
.Feedform form{
width: 450px;
text-align: center;
padding: 25px 20px;
}
form h1{
padding: 20px 0;
}
form .id{
position: relative;
}
.id i{
position: absolute;
font-size: 20px ;
top: 50%;
right: 20px;
transform: translateY(-50%);
}
form input{
width: 100%;
height: 50px;
margin: 4px 0;
border: 1px solid #5c5c5c;
border-radius: 3px;
background: rgba(31, 30, 30, 0.4);
padding: 0 15px;
padding-right: 45px;
font-size: 20px;
color: #56d8f5;
}
form textarea{
padding: 5px 15px;
border: 1px solid #5c5c5c;
border-radius: 3px;
background: rgba(31, 31, 31, 0.4);
font-size: 20px;
width: 100%;
margin: 4px 0;
color: #56d8f5;
}
form button{
margin: 5px;
border: 1px solid rgb(104, 104, 104);
border-radius: 3px;
background: #00b7ff8c;
color: #222;
padding: 10px 0;
width: 100%;
font-size: 20px;
font-weight: 600;
}
form input:focus,
form textarea:focus{
border: 1px solid #56d8f5;
transition: all 0.3s ease;
}
form input:focus::placeholder,
form textarea:focus::placeholder{
padding-left: 4px;
transition: all 0.3s ease;
}
form input:focus + i{
color: #56d8f5;
transition: all 0.3s ease;
}