-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback-styles.css
83 lines (69 loc) · 1.27 KB
/
feedback-styles.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
/*style.css */
@import url(
'https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
margin: 0;
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
height: 100vh;
font-family: 'Poppins', sans-serif;
}
.textup {
text-align: center;
color: rgb(11, 118, 11);
font-weight: 700;
}
i {
margin-right: 3px;
}
.form-box {
background-color: #fff;
box-shadow: 0 0 10px rgba(36, 67, 40, 0.8);
padding: 15px;
border-radius: 8px;
width: 500px;
}
form {
max-width: 400px;
margin: 0 auto;
}
.radio-group {
display: flex;
margin-bottom: 16px;
}
input[type="radio"] {
margin-right: 8px;
}
label {
display: block;
margin-bottom: 8px;
font-size: 17px;
color: green;
font-weight: 600;
}
input,
textarea {
width: 100%;
padding: 8px;
margin-bottom: 12px;
box-sizing: border-box;
border-radius: 10px;
}
button {
background-color: #368b44;
color: #fff;
padding: 10px;
border: none;
border-radius: 25px;
cursor: pointer;
width: 100%;
font-size: 15px;
transition: .2s linear;
}
button:hover {
background-color: #0a6808;
border: none;
transform: translateY(-10px);
}