-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (111 loc) · 1.92 KB
/
styles.css
File metadata and controls
127 lines (111 loc) · 1.92 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
.func_subHead {
font-size: 1.3em;
font-weight: bold;
}
.func_Head {
font-size: 1.5em;
}
.end_neomorp {
-webkit-border-radius: 63px;
border-radius: 63px;
background: #fafafa;
-webkit-box-shadow: 23px 23px 46px #a3a3a3,
-23px -23px 46px #ffffff;
box-shadow: 23px 23px 46px #a3a3a3,
-23px -23px 46px #ffffff;
}
.name_neomorp {
-webkit-border-radius: 43px;
border-radius: 43px;
background: #dddcdc;
-webkit-box-shadow: 26px 26px 59px #8d8d8d,
-26px -26px 59px #ffffff;
box-shadow: 26px 26px 59px #8d8d8d,
-26px -26px 59px #ffffff;
}
#content17-f{
padding-bottom: 3rem;
}
.feedback {
margin-top: 30px;
}
.feedback-sec{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.feedback-cont {
max-width: 500px;
margin: 0 auto;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
}
.form-group {
width: 100%;
margin-top: 20px;
font-size: 20px;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 5px;
font-size: 14px;
margin-top: 5px;
}
textarea {
resize: vertical;
}
button[type = "submit"] {
width: 100%;
border: none;
outline: none;
padding: 20px;
font-size: 24px;
border-radius: 8px;
text-align: center;
cursor: pointer;
margin-top: 10px;
background-color: #6592e6;
border-color: #6592e6;
color: #ffffff;
transition: 0.3s ease background-color;
}
button[type = "submit"]:hover {
background-color: #007bff;
}
/*#status {
width: 90%;
max-width: 500px;
text-align: center;
padding: 10px;
margin: 0 auto;
border-right: 8px;
}
#status.success {
background-color: rgb(211,250,153);
animation: status 4s ease forwards;
color: white;
}
#status.error {
background-color: rgb(250,129,92);
animation: status 4s ease forwards;
color: white;
}
*/
/*@keyframes status {
0%{
opacity: 1;
pointer-events: all;
}
90%{
opacity: 1;
pointer-events: all;
}
100%{
opacity: 0;
pointer-events: none;
}
}*/