-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (103 loc) · 2.06 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
body{
width: 100%;
height: 100vh;
max-width: 100%;
background: linear-gradient(to right, #5afaba 0%, #2eea9f 0%, #178ca3 100%);
display: grid;
align-items: center;
justify-content: center;
margin: 0;
position: relative;
}
.container form{
max-width: 100%;
padding: 50px 30px 20px;
background: #fff;
border-radius: 4px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
position: relative;
}
.fa-paper-plane{
position: absolute;
top: 0;
left: 50%;
color: #2eb0ec;
transform: translate(-50%,-50%);
background: #fff;
font-size: 30px;
padding: 20px;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.container .headings{
max-width: 100%;
padding-bottom: 7%;
padding-top: 15%;
}
.text-center{
position: relative;
text-align: center;
padding-bottom: 2%;
font-size: 45px;
}
p{
position: relative;
text-align: center;
font-size: 25px;
}
.input-group{
width: 100%;
display: flex;
align-items: center;
margin: 10px 0;
position: relative;
}
.input-group label{
flex-basis: 28%;
}
.input-group input, .input-group textarea{
flex-basis: 68%;
background: transparent;
border: 0;
outline: 0;
padding: 10px 0;
border-bottom: 1px solid #999;
color: #333;
font-size: 16px;
}
::placeholder{
font-size: 14px;
}
form .btn{
background: linear-gradient(to right, #5afaba 0%, #2eea9f 0%, #178ca3 100%);
color: #000;
border-radius: 4px;
border: 1px solid #178ca3;
padding: 10px 40px;
outline: 0;
cursor: pointer;
display: block;
margin: 30px auto 10px;
font-size: 17px;
font-weight: bold;
}
.input-group span{
position: absolute;
bottom: 12px;
right: 17px;
font-size: 14px;
color: red;
}
.submit-group{
color: red;
}
.input-group span i{
color: rgb(25, 184, 94);
}