File tree Expand file tree Collapse file tree 2 files changed +32
-7
lines changed Expand file tree Collapse file tree 2 files changed +32
-7
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,13 @@ body {
29
29
margin-bottom : 15px ;
30
30
align-items : center;
31
31
flex-direction : row;
32
-
33
32
justify-content : space-evenly;
34
33
}
35
34
36
35
.blog_card {
37
36
display : block;
38
37
margin : 0px 50px ;
39
- max-height : 300 px ;
38
+ max-height : 250 px ;
40
39
overflow : auto;
41
40
box-shadow : -7px 8px 15px -2px # cd8212 ;
42
41
-webkit-box-shadow : -7px 8px 15px -2px # cd8212 ;
@@ -51,6 +50,7 @@ table .author_name {
51
50
border-bottom-left-radius : 10px ;
52
51
font-weight : 600 ;
53
52
text-align : center;
53
+ max-width : 30px ;
54
54
}
55
55
56
56
table {
@@ -60,12 +60,22 @@ table {
60
60
}
61
61
62
62
table .cardcontent {
63
- padding : 10px ;
63
+ padding : 5 px 10px ;
64
64
font-size : 13px ;
65
65
text-align : justify;
66
66
text-justify : inter-word;
67
67
}
68
+ .cardcontent ::-webkit-scrollbar {
69
+ display : none;
70
+ }
71
+ .cardcontent {
72
+ overflow : auto;
68
73
74
+ text-overflow : ellipsis;
75
+ display : -webkit-box;
76
+ -webkit-line-clamp : 4 ; /* number of lines to show */
77
+ -webkit-box-orient : vertical;
78
+ }
69
79
table i {
70
80
cursor : pointer;
71
81
padding-right : 20px ;
Original file line number Diff line number Diff line change 20
20
/>
21
21
</ head >
22
22
< body >
23
+ <!-- Website Header -->
23
24
< header id ="header ">
24
25
< div id ="logo_container ">
25
26
< div id ="header_logo "> ScriBBler</ div >
43
44
< h2 > Get Started</ h2 >
44
45
< hr />
45
46
</ div >
46
- < form action ="POST ">
47
+ < form
48
+ action ="GET "
49
+ onsubmit ="window.alert('Submitted'); event.preventDefault(); "
50
+ >
47
51
< div class ="input_container ">
48
52
< div >
49
53
< label for ="full_name "> Full Name</ label >
@@ -111,7 +115,10 @@ <h2>Welcome Back!</h2>
111
115
< hr />
112
116
</ div >
113
117
114
- < form action ="POST ">
118
+ < form
119
+ action ="GET "
120
+ onsubmit ="window.alert('Submitted'); event.preventDefault(); "
121
+ >
115
122
< div class ="input_container ">
116
123
< div >
117
124
< label for ="signin_user_name "> Username</ label >
@@ -156,7 +163,10 @@ <h2>Welcome Back!</h2>
156
163
< h2 > Pen Your Post</ h2 >
157
164
</ div >
158
165
159
- < form action ="POST ">
166
+ < form
167
+ action ="GET "
168
+ onsubmit ="window.alert('Submitted'); event.preventDefault(); "
169
+ >
160
170
< div class ="input_container ">
161
171
< div >
162
172
< label for ="compose_post_title "> Title:</ label >
@@ -186,6 +196,7 @@ <h2>Pen Your Post</h2>
186
196
</ div >
187
197
</ div >
188
198
199
+ <!-- Central Components to compose and view all posts -->
189
200
< div id ="container ">
190
201
< div class ="button_container ">
191
202
< button
@@ -194,7 +205,11 @@ <h2>Pen Your Post</h2>
194
205
>
195
206
All Posts
196
207
</ button >
197
- < button id ="btn_create_post " onclick ="showComposePostModal() ">
208
+ < button
209
+ id ="btn_create_post "
210
+ onsubmit =""
211
+ onclick ="showComposePostModal() "
212
+ >
198
213
Create Post
199
214
</ button >
200
215
</ div >
You can’t perform that action at this time.
0 commit comments