1
1
body {
2
2
font-family : Inter, sans-serif;
3
+ background-color : # f9f9fb ;
4
+
3
5
}
4
6
5
7
.container_login {
@@ -22,26 +24,6 @@ body {
22
24
bottom : 10px ;
23
25
}
24
26
25
- .text_input {
26
- border : 1px solid # 555555 ;
27
- border-radius : 10px ;
28
- margin : 20px 0px 7px 0px ;
29
- padding : 5px ;
30
- height : 35px ;
31
- width : 375px ;
32
- text-align : center;
33
- }
34
-
35
- .text_input_2 {
36
- border : 1px solid # 555555 ;
37
- border-radius : 10px ;
38
- margin : 0px 0px 20px 0px ;
39
- padding : 5px ;
40
- height : 35px ;
41
- width : 375px ;
42
- text-align : center;
43
- }
44
-
45
27
.flex {
46
28
display : flex;
47
29
justify-content : center;
@@ -54,6 +36,24 @@ body {
54
36
align-items : center;
55
37
}
56
38
39
+ .space-between {
40
+ justify-content : space-between;
41
+ }
42
+
43
+ .width-75 {
44
+ width : 75% ;
45
+ }
46
+
47
+ .width-40vw {
48
+ width : 40vw ;
49
+ overflow : scroll;
50
+ word-wrap : break-word;
51
+ }
52
+
53
+ .width-95 {
54
+ width : 95% ;
55
+ }
56
+
57
57
.container_success {
58
58
display : flex;
59
59
flex-direction : column;
@@ -84,31 +84,38 @@ body {
84
84
border : 2px solid # 6363f1 ;
85
85
border-radius : 26px ;
86
86
color : white;
87
- padding : 16 px 32 px ;
87
+ padding : 8 px 16 px ;
88
88
text-align : center;
89
89
text-decoration : none;
90
90
display : inline-block;
91
91
font-size : 16px ;
92
92
margin : 4px 2px ;
93
93
transition-duration : 0.4s ;
94
94
cursor : pointer;
95
- }
95
+ box-shadow : 0px 8px 15px rgba (0 , 0 , 0 , 0.1 );
96
+ }
97
+
98
+ .button-outline {
99
+ background-color : # f9f9fb ;
100
+ color : # 6363f1 ;
101
+ padding : 8px 16px ;
102
+ }
96
103
97
- .button : hover {
104
+ .button : hover ,
105
+ .button-outline : hover {
98
106
background-color : # 555555 ;
99
107
border : 2px solid # 555555 ;
100
108
color : white;
101
109
}
102
110
103
- .dsync_button {
104
- width : 400 px ;
111
+ .sales-button {
112
+ margin-left : 10 px ;
105
113
}
106
114
107
- .login_button {
108
- width : 95% ;
109
- }
110
115
111
- h2 , h1 {
116
+
117
+ h2 ,
118
+ h1 {
112
119
text-align : center;
113
120
color : # 555555 ;
114
121
}
@@ -122,16 +129,18 @@ h2, h1 {
122
129
align-items : center;
123
130
position : relative;
124
131
bottom : 10% ;
125
-
132
+ /* background-color: #f9f9fb; */
126
133
}
134
+
127
135
.logged_in_div_left {
128
136
width : 40% ;
129
137
height : 100vh ;
130
138
display : flex;
131
139
flex-direction : column;
132
140
justify-content : center;
133
- align-items : center;
134
- background-color : # dad8d8 ;
141
+ align-items : left;
142
+ background-color : # f9f9fb ;
143
+ margin-left : 4vw ;
135
144
}
136
145
137
146
.logged_in_div_left div {
@@ -149,39 +158,72 @@ h2, h1 {
149
158
letter-spacing : -.05em ;
150
159
}
151
160
152
- .logged_in_div_left h2 {
153
- color : # 6363f1 ;
154
- font-size : 75px ;
161
+ .home-hero-gradient {
162
+ background-image : linear-gradient (45deg , # a163f1, # 6363f1 22% , # 3498ea 40% , # 40dfa3 67% , rgba (64 , 223 , 163 , 0 ));
163
+ background-size : 150% 100% ;
164
+ background-repeat : no-repeat;
165
+ -webkit-background-clip : text;
166
+ -webkit-text-fill-color : transparent;
167
+ background-clip : text;
168
+ animation : intro-gradient 1.2s cubic-bezier (0.85 , 0.26 , 0.89 , 0.93 );
169
+ animation-iteration-count : 1 ;
170
+ animation-fill-mode : backwards;
171
+ animation-delay : 0.4s ;
155
172
text-align : left;
156
- margin-top : 0px ;
157
- font-weight : normal;
173
+ font-size : 75px ;
158
174
letter-spacing : -.05em ;
175
+ font-weight : normal;
176
+ margin-top : 0px ;
177
+ }
178
+
179
+ .title-text {
180
+ margin-bottom : -50px ;
181
+ }
182
+
183
+ .title-subtext {
184
+ color : gray;
185
+ line-height : 10px ;
186
+ margin-bottom : 15px ;
187
+ font-weight : 200 ;
159
188
}
160
189
161
190
.logged_in_div_left button {
162
191
padding : 8px 22px ;
192
+ box-shadow : 0px 8px 15px rgba (0 , 0 , 0 , 0.1 );
193
+ }
194
+
195
+ .logged_in_div_right button {
196
+ padding : 8px 22px ;
197
+ box-shadow : 0px 8px 15px rgba (0 , 0 , 0 , 0.1 );
163
198
}
164
199
165
200
div .text_box {
166
- background-color : # dad8d8 ;
167
- border-radius : 5px ;
168
- border : 2px solid # 6363f1 ;
169
- width : 75% ;
201
+ background-color : # f9f9fb ;
202
+ width : 40vw ;
203
+ max-height : 30vh ;
170
204
padding : 10px ;
171
205
word-wrap : break-word;
206
+ overflow : scroll;
207
+ border-width : 3px ;
208
+ border-style : solid;
209
+ border-image :
210
+ linear-gradient (# a163f1, # 6363f1 22% , # 3498ea 40% , # 40dfa3 67% , rgba (64 , 223 , 163 , 0 )) 0 100% ;
172
211
}
173
212
174
213
.logged_in_nav {
175
214
display : flex;
176
215
justify-content : space-between;
177
- background-color : # 6363f1 ;
216
+ background-color : # f9f9fb ;
178
217
height : 60px ;
179
- padding : 7px 7px 7px 10px ;
218
+ padding : 15px 30px 15px 30px ;
219
+
220
+ z-index : 1000 ;
180
221
}
222
+
181
223
.logged_in_nav p {
182
224
padding : 4px 0px 0px 15px ;
183
225
line-height : 1 ;
184
- color : white ;
226
+ color : # 29363d ;
185
227
}
186
228
187
229
.logged_in_nav img {
@@ -194,14 +236,78 @@ div.text_box {
194
236
border : 2px solid # 555555 ;
195
237
}
196
238
197
- # note_div {
198
- border-left : 1px solid # 6363f1b6 ;
199
- border-right : 1px solid # 6363f1b6 ;
200
- background-color : # 6363f122 ;
201
- color : # 2f2e2e ;
202
- margin-top : 20px ;
203
- padding : 0px 5px 0px 5px ;
239
+ .nav-item {
240
+ color : black;
241
+ border : 2px solid # f9f9fb ;
242
+ background-color : # f9f9fb ;
243
+ box-shadow : none;
244
+ border-radius : 5px ;
245
+ }
246
+
247
+ .blog-nav-button {
248
+ margin-right : 20px ;
249
+ background-color : # f9f9fb ;
250
+ border : 2px solid # f9f9fb ;
251
+ }
252
+
253
+ .directory-buttons {
254
+ justify-content : space-between;
255
+ width : 40vw ;
256
+ }
257
+
258
+ .nav-item : hover {
259
+ background-color : # f9f9fb ;
260
+ border : 2px solid # f9f9fb ;
261
+ color : # a6a4a4 ;
262
+ }
263
+
264
+ pre .prettyprint {
265
+ border : none !important ;
266
+ }
267
+
268
+ ul {
269
+ list-style-type : none;
270
+ margin-right : 35px ;
271
+ text-decoration : none;
272
+ }
273
+
274
+ li {
275
+ padding : 6px ;
276
+ }
277
+
278
+ a : link {
279
+ text-decoration : none;
280
+ }
281
+
282
+ a : visited {
283
+ text-decoration : none;
284
+ }
285
+
286
+ li .even {
287
+ background-color : rgb (228 , 228 , 228 );
288
+ }
289
+
290
+ .card {
291
+ border : 1px solid # 555555 ;
292
+ border-radius : 10px ;
293
+ margin : 0px 15px 0px 15px ;
294
+ padding : 25px 50px ;
295
+ margin-bottom : 20px ;
204
296
text-align : center;
205
- font-size : smaller;
206
- width : 75% ;
207
297
}
298
+
299
+ .webhooks-container {
300
+ width : 45vw ;
301
+ padding : 25px ;
302
+ max-height : 450px ;
303
+ overflow-y : scroll;
304
+ }
305
+
306
+ # clear_button_div {
307
+
308
+ margin-bottom : 50px ;
309
+ }
310
+
311
+ .hidden {
312
+ display : none;
313
+ }
0 commit comments