-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.css
109 lines (92 loc) · 1.56 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
*
{
/* outline: solid red 1px; */
}
body
{
display: grid;
grid-template-rows: 1fr 10fr 1fr;
grid-template-columns: 1fr 2fr 1fr;
background: #263238;
color: #000000;
}
.head
{
grid-row: 1/2;
grid-column: 2/3;
font-size: 50px;
text-align: center;
align-items: center;
justify-items: center;
color: #cfd8dc;
}
.container
{
grid-row: 2/3;
grid-column: 2/3;
display: grid;
justify-items: center;
align-items: center;
font-size: 20px;
}
.field
{
padding: 20px;
margin: 20px;
border: solid #cfd8dc 2px;
background: #90a4ae;
width: 70%;
justify-items: center;
align-items: center;
}
.rate
{
text-align: center;
font-size: 30px;
font-weight: 700;
}
#label
{
text-align: center;
align-self: center;
}
input[type=submit]
{
width: 60%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 50px;
outline: none;
border: none;
background-color: #313131;
color: white;
transition: 0.5s;
cursor: pointer;
}
input[type=text]
{
width: 70%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 50px;
outline: none;
border: none;
background-color: #eceff1;
transition: 0.5s;
color: black;
}
input[type=email]
{
width: 70%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 50px;
outline: none;
border: none;
background-color: #eceff1;
transition: 0.5s;
color: black;
}