-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.css
More file actions
159 lines (140 loc) · 2.61 KB
/
feedback.css
File metadata and controls
159 lines (140 loc) · 2.61 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
body>div:nth-child(12) {
margin: 0;
padding: 0;
}
body>div:nth-child(12) {
padding-top:5%;
font-family: 'Open sans';
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
body>div:nth-child(12) > * {
margin: 0;
padding: 0;
box-sizing: inherit;
}
.wrapper {
width: 700px;
background: rgb(224, 217, 238);
border-radius: 10px;
box-shadow: 0 25px 70px rgba(189, 176, 176, 0.05);
overflow: hidden;
}
h1.title {
padding: 15px 0;
margin-left: 25px;
font-weight: normal;
color: rgba(57,50,173,1)
}
.form {
width: 700px;
}
.myform {
background: #e5e9f1;
padding: 25px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 25px
}
.myform label {
display: block;
color: #6b6d83;
font-weight: bold;
font-size: .8rem;
margin-bottom: 10px;
}
.myform input {
border: 0;
outline: 0;
height: 50px;
background: #FFF;
width: 100%;
border-radius: 5px;
color: #155BDA;
font-weight: 700;
font-size: .9rem;
text-indent: 15px;
border: 2px solid transparent;
transition: border 250ms;
}
.full-width {
grid-column: -1 / 1
}
.button {
grid-column: -1 / 1;
display: flex;
justify-content: center;
}
.button button {
border: 0;
outline: 0;
width: 120px;
height: 50px;
border-radius: 50px;
color: #FFF;
font-weight: bold;
font-size: .9rem;
cursor: pointer;
background: linear-gradient(356deg, rgba(57,50,173,1) 0%, rgba(87,50,173,1) 100%);
}
.button button:hover {
background: rgba(57,50,173,1);
}
.my-button {
grid-column: -1 / 1;
display: flex;
justify-content: center;
}
.my-button {
border: 0;
outline: 0;
width: 120px;
height: 50px;
border-radius: 50px;
color: #FFF;
font-weight: bold;
font-size: .9rem;
cursor: pointer;
background: linear-gradient(356deg, rgb(111, 50, 173) 0%, rgb(173, 50, 122) 100%);
align-items: center;
}
input[type="button"].my-button:hover {
background: rgba(57,50,173,1);
}
@media(max-width:710px){
.wrapper{
width: 80%;
background: rgb(224, 217, 238);
border-radius: 10px;
box-shadow: 0 3.4% 10% rgba(189, 176, 176, 0.05);
overflow: hidden;
}
h1.title {
padding: 2.15% 0;
margin-left: 3.57%;
font-weight: normal;
color: rgba(57,50,173,1)
}
.form {
width: 100%;
height:100%;
}
.myform {
background: #e5e9f1;
padding: 3.57%;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 3.57%;
height:350px;
}
.myform label {
display: block;
color: #6b6d83;
font-weight: bold;
font-size: .8rem;
margin-bottom: 0.15%;
}
}