-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.css
116 lines (95 loc) · 1.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Fredoka One', cursive;
}
.home {
margin: 10px 40px 0px 1400px;
max-width: fit-content;
position: static;
}
.home img:hover {
transform: scale(1.5);
}
.logo {
border-radius: 1000px;
border-color: aqua;
width: 200px;
height: 200px;
background-color: #00ffff;
overflow: hidden;
margin: auto;
margin-top: 50px;
}
.logo img {
height: 250px;
width: auto;
margin: 0px 0px 0px -20px;
position: relative;
}
.feedback {
max-width: fit-content;
max-height: fit-content;
margin: auto;
margin-top: 30px;
max-width: 240px;
text-align: left;
}
input[type=text] {
width: 235px;
}
.icons {
width: 50px;
height: auto;
position: relative;
}
.icon {
margin: auto;
max-width: 220px;
max-height: 20px;
position: relative;
padding: 10px;
margin-top: 20px;
}
.icon ul li {
list-style-type: none;
margin-top: 20px;
display: inline;
}
.icon ul li a {
padding: 10px;
}
.icon ul li a img:hover {
transform: scale(1.5);
}
/* */
form label {
display: block;
margin-bottom: 5px;
}
form input, form textarea {
display: block;
margin-bottom: 20px;
width: 100%;
padding: 5px;
border: none;
border-bottom: 2px solid #333;
transition: border-bottom 0.3s ease;
}
form input:focus, form textarea:focus {
outline: none;
border-bottom: 2px solid #8dc63f;
}
form button[type="submit"] {
background-color: #8dc63f;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 3px;
cursor: pointer;
transition: background-color 0.3s ease;
}
form button[type="submit"]:hover {
background-color: #6f9d29;
}