@@ -16,15 +16,7 @@ background-size: cover;
16
16
17
17
}
18
18
19
- a {
20
- text-decoration : none;
21
- color : aquamarine;
22
- -webkit-transition : .5s ease;
23
- transition : .5s ease;
24
- }
25
- a : hover {
26
- color : cadetblue;
27
- }
19
+
28
20
.form {
29
21
background : rgba (172 , 107 , 83 , 0.4 );
30
22
padding : 40px ;
@@ -57,59 +49,135 @@ border-radius: 15px;
57
49
display : block;
58
50
text-decoration : none;
59
51
padding : 15px ;
60
- background : rgba (224 , 250 , 227 , 0.87 );
61
- color : rgb (5 , 53 , 5 );
52
+ background : rgba (224 , 250 , 227 , 0.4 );
53
+ color : rgb (6 , 22 , 6 );
62
54
font-size : 25px ;
63
55
float : left;
64
56
width : 50% ;
65
57
text-align : center;
66
58
cursor : pointer;
67
- -webkit-transition : .5s ease;
68
- transition : .5s ease;
59
+
69
60
}
70
61
.tab-group li a : hover {
71
62
72
- background : rgba (221 , 144 , 97 , 0.9 );
73
- color : rgb (45 , 255 , 175 );
63
+ background : rgba (224 , 250 , 227 , 0.9 );
64
+ color : rgb (6 , 22 , 6 );
65
+ }
66
+ p {
67
+ font-size : large;
68
+ color : black;
69
+ font-family : Verdana, Geneva, Tahoma, sans-serif;
74
70
}
75
-
76
71
.tab-froup .active a {
77
72
background : sandybrown;
78
73
color : seashell;
79
74
80
75
}
81
- .tab-content > div : last-child {
82
- display : none;
83
- }
76
+
84
77
85
78
h1 {
86
79
text-align : center;
87
- color : rgba (224 , 250 , 227 , 0.87 );
80
+ color : rgb (224 , 250 , 227 );
88
81
font-weight : 300 ;
89
82
margin : 0 0 40px ;
90
83
font-family : Verdana, Geneva, Tahoma, sans-serif;
84
+ text-shadow : 2px 2px black;
91
85
}
92
86
93
- div .info {
94
- color : pink;
95
- display : box;
96
- text-align : center;
97
- padding : 5px ;
98
- margin-top : -20px ;
99
- margin-bottom : 15px ;
100
- border : 1px solid red;
101
- background : coral;
102
- }
87
+
103
88
104
89
label {
105
90
position : absolute;
106
- -webkit-transform : translateY (6px );
107
- transform : translateY (6px );
91
+ bottom : 40px ;
108
92
left : 13px ;
109
- color : rgba (255 , 255 , 255 , 0.5 );
110
- -webkit-transition : all 0.25s ease;
111
- transition : all 0.25s ease;
112
- -webkit-backface-visibility : hidden;
113
- pointer-events : none;
93
+ color : rgb (255 , 255 , 255 );
94
+
95
+
96
+ }
97
+
98
+ label .req {
99
+ margin : 2px ;
100
+ color : rgb (15 , 167 , 159 );
101
+ }
102
+ label .active {
103
+ -webkit-transform : translateY (50px );
104
+ transform : translateY (50px );
105
+ left : 2px ;
106
+ color : rgba (255 , 255 , 255 , 0 );
107
+ }
108
+
109
+ label .active .req {
110
+ opacity : 1 ;
111
+ }
112
+
113
+ label .highlight {
114
+ color : aquamarine;
115
+ }
116
+ input , textarea {
117
+ font-size : 22px ;
118
+ display : block;
119
+ width : 100% ;
120
+ height : 6% ;
121
+ padding : 5px 10px ;
122
+ background : none;
123
+ border : 3px solid # a0a0a0 ;
124
+ }
125
+ input : focus , textarea : focus {
126
+ outline : 0 ;
127
+ border-color : aquamarine;
128
+ background-color : rgba (255 , 255 , 255 , 0.2 );
129
+ }
130
+ textarea {
131
+ border : 2px solid # ffffff ;
132
+ resize : vertical;
133
+ }
134
+
135
+ .field-wrap {
136
+ position : relative;
137
+ margin-bottom : 45px ;
138
+ }
139
+
140
+
141
+ .button-28 {
142
+ appearance : none;
143
+ background-color : transparent;
144
+ border : 2px solid # 1A1A1A ;
145
+ border-radius : 15px ;
146
+ box-sizing : border-box;
147
+ color : # 3B3B3B ;
148
+ cursor : pointer;
149
+ display : inline-block;
150
+ font-family : Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI" , Helvetica, Arial, sans-serif, "Apple Color Emoji" , "Segoe UI Emoji" , "Segoe UI Symbol" ;
151
+ font-size : 16px ;
152
+ font-weight : 600 ;
153
+ line-height : normal;
154
+ margin : 0 ;
155
+ min-height : 60px ;
156
+ min-width : 0 ;
157
+ outline : none;
158
+ padding : 16px 24px ;
159
+ text-align : center;
160
+ text-decoration : none;
161
+ transition : all 300ms cubic-bezier (.23 , 1 , 0.32 , 1 );
162
+ user-select : none;
163
+ -webkit-user-select : none;
164
+ touch-action : manipulation;
165
+ width : 100% ;
166
+ will-change : transform;
167
+ }
168
+
169
+ .button-28 : disabled {
170
+ pointer-events : none;
171
+ }
172
+
173
+ .button-28 : hover {
174
+ color : # fff ;
175
+ background-color : # 1A1A1A ;
176
+ box-shadow : rgba (0 , 0 , 0 , 0.25 ) 0 8px 15px ;
177
+ transform : translateY (-2px );
178
+ }
114
179
180
+ .button-28 : active {
181
+ box-shadow : none;
182
+ transform : translateY (0 );
115
183
}
0 commit comments