Done for now
This commit is contained in:
7594
static/css/bootstrap.css
vendored
7594
static/css/bootstrap.css
vendored
File diff suppressed because it is too large
Load Diff
7
static/css/bootstrap.min.css
vendored
7
static/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,40 +0,0 @@
|
||||
/*
|
||||
* Start of Custom CSS
|
||||
*/
|
||||
.nav-link, .navbar-brand {
|
||||
font-family: 'Amatic SC', cursive;
|
||||
font-size: 40px; }
|
||||
|
||||
.card-img-overlay {
|
||||
opacity: 0; }
|
||||
|
||||
.card:hover .card-img-overlay {
|
||||
opacity: 1; }
|
||||
|
||||
.card {
|
||||
margin: 10px; }
|
||||
.card .card-img-overlay {
|
||||
padding: 0; }
|
||||
.card .card-img-overlay .card-title-bg {
|
||||
height: 25%;
|
||||
opacity: 0.8; }
|
||||
.card .card-img-overlay .card-title-bg .card-text {
|
||||
opacity: 1; }
|
||||
|
||||
a .card, a .card:hover {
|
||||
color: inherit; }
|
||||
|
||||
.modal-body img {
|
||||
margin: 10px; }
|
||||
|
||||
.social-icon {
|
||||
margin: 10px; }
|
||||
|
||||
body {
|
||||
padding-top: 6.5rem; }
|
||||
|
||||
footer {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px; }
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
@@ -5,12 +5,9 @@ $('#detailModal').on('show.bs.modal', function (event) {
|
||||
" <span class=\"sr-only\">Loading...</span>\n" +
|
||||
"</div>");
|
||||
$('#details-description').html('');
|
||||
$.post(`/api/post/${post_id}`, data => {
|
||||
|
||||
$.get(`/api/post/${post_id}`, data => {
|
||||
let post = data.post;
|
||||
console.log(post);
|
||||
|
||||
// $('#details-title').text(post.title);
|
||||
$('#details-intro').html(post.intro);
|
||||
$('#details-description').html(post.description);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user