-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComplaintStyle.css
79 lines (69 loc) · 1.58 KB
/
ComplaintStyle.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
body {
background: linear-gradient(to right, #ff5f6d, #ffc371);
}
section {
min-height: 90vh;
padding: 1rem 16%;
padding-top: 16rem;
margin-top: 2.5vh;
}
.title {
width: 100%;
background: linear-gradient(to right, #e52d27, #b31217);
color: white;
padding: 20px;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
text-align: center;
font-size: 3.5rem;
}
.wrapper {
width: 100%;
background-color: lavenderblush;
padding: 30px;
display: flex;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
}
.pic {
height: 500px;
width: 500px;
border-color: red;
background: linear-gradient(60deg, #b399ff, #d294ff);
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
.pic img {
width: 500px;
height: 100%;
}
.wrapper .title {
font-size: 24px;
font-weight: 700;
margin-bottom: 25px;
color: #fec107;
text-transform: uppercase;
text-align: center;
}
.wrapper .form {
width: 100%;
}
.wrapper .form .inputfield .btn {
width: 100%;
padding: 8px 10px;
font-size: 2.5rem;
font-weight: 600;
border: 0px;
background-image: linear-gradient(to right, #e52d27 0%, #b31217 51%, #e52d27 100%);
color: #fff;
cursor: pointer;
border-radius: 3px;
outline: none;
margin-top: 10rem;
}
.wrapper .form .inputfield .btn:hover {
background: grey;
}
.wrapper .form .inputfield:last-child {
margin-bottom: 0;
}