Skip to content

Commit 8256785

Browse files
authored
Merge pull request #60 from reveurguy/master
some changes.
2 parents 9bba70f + 67264a5 commit 8256785

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<div class="container justify-content-around d-flex">
1313
<div class="float-left ml-5">
14-
<span>Made With <i class="fas fa-heart fa-2x" style="color: crimson;" aria-hidden="true"></i></span>
14+
<span>Made With <i class="fas fa-heart fa-2x animate__animated animate__pulse animate__infinite" style="color: crimson;" aria-hidden="true"></i></span>
1515
<!-- Copyright -->
1616
<div class="pb-3 text-dark">© 2020 Copyright:
1717
<a class="text-dark" href="https://github.com/py-contributors">PyContributors</a>

_layouts/default.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&display=swap" rel="stylesheet">
2424
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700&display=swap" rel="stylesheet">
2525

26+
<!-- Animate.css -->
27+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
28+
2629
<link rel="stylesheet" href="https://raw.githubusercontent.com/googlearchive/code-prettify/master/styles/sunburst.css">
2730
</head>
2831
<body>

assets/css/main.css

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,19 @@ pre code
6666
.card {
6767
height: 485px;
6868
box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, .2), -6px 0px 10px 2px rgba(0, 0, 0, .2);
69-
border-radius: .5rem;
69+
border-radius: .5rem !important;
7070
}
7171
.navbar-brand {
7272
font-size: 2.3rem !important;
7373
}
7474
blockquote
7575
{
7676
box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, .2), -6px 0px 10px 2px rgba(0, 0, 0, .2);
77-
border-radius: .5rem;
77+
border-radius: .5rem !important;
7878
}
7979
.bdrRadius
8080
{
81-
border-radius: .5rem
81+
border-radius: .5rem !important;
8282
}
8383
h1,h2,h3,h4,h5
8484
{
@@ -169,6 +169,10 @@ background-attachment: fixed !important;
169169
{
170170
margin-right: 4px !important;
171171
}
172+
.pMd
173+
{
174+
margin-top: 30% !important;
175+
}
172176
}
173177
@media screen and (max-width: 990px)
174178
{
@@ -186,6 +190,10 @@ background-attachment: fixed !important;
186190
{
187191
margin-top: 14% !important;
188192
}
193+
.pMd
194+
{
195+
margin-top: 15% !important;
196+
}
189197
}
190198

191199
/* Chnages*/
@@ -301,4 +309,18 @@ background-attachment: fixed !important;
301309
{
302310
font-size:55px;
303311
font-weight:700;
312+
}
313+
.badge
314+
{
315+
font-size:16px !important;
316+
line-height:1.5 !important;
317+
font-weight:normal !important;
318+
}
319+
.mainHeading a:hover
320+
{
321+
text-decoration:none;
322+
}
323+
.pMd
324+
{
325+
margin-top: 10%;
304326
}

updates/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ <h3 class="mb-0">Notifications</h3>
3030
</div>
3131
<ul class="list-group list-group-flush">
3232
{% for post in site.posts %}
33-
<li class="list-group-item">
33+
<li class="list-group-item">
34+
<span class="badge badge-danger badge-pill p-2 mr-2"> New !! </span>
3435
<a class="mt-2" href="{{post.url}}">{{post.title}}</a>
3536
</li>
3637
{% endfor %}

0 commit comments

Comments
 (0)