Skip to content

Commit c42dc39

Browse files
authored
Merge pull request #65 from reveurguy/master
some changes and animations.
2 parents 00ea769 + cf108cb commit c42dc39

File tree

5 files changed

+39
-8
lines changed

5 files changed

+39
-8
lines changed

_layouts/blog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</head>
2727
<body>
2828
{% include navbar.html %}
29-
<div class="container mt-3 bg-white py-3 pMd px-4">
29+
<div class="container mt-3 bg-white py-3 pMd px-4 bdrRadius">
3030
<!-- Page content here -->
3131
{{ content }}
3232
</div><!-- /.container -->

_layouts/default.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</head>
3131
<body>
3232
{% include navbar.html %}
33-
<div class="container marginStyle">
33+
<div class="container marginStyle bdrRadius">
3434
<!-- Page content here -->
3535
{{ content }}
3636
</div><!-- /.container -->
@@ -39,5 +39,12 @@
3939
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
4040
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
4141
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
42+
<!-- Scroll reveal -->
43+
<script src="https://unpkg.com/scrollreveal"></script>
44+
<script>
45+
ScrollReveal().reveal('.blockquote', {
46+
interval: 100, mobile: true, viewFactor: 0.3, delay:100
47+
});
48+
</script>
4249
</body>
4350
</html>

assets/css/main.css

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ background-attachment: fixed !important;
129129
}
130130
.box {
131131
display: flex;
132-
width: 90%;
132+
width: 100%;
133133
height: 5px;
134134
margin: 0 auto;
135135
}
@@ -336,4 +336,26 @@ background-image:url("data:image/svg+xml;charset=utf8,%3Csvg id='Layer_1' fill-o
336336
.ml-7
337337
{
338338
margin-left:25rem;
339+
}
340+
341+
::selection
342+
{
343+
background:#ffcb3c;
344+
}
345+
346+
body{
347+
opacity: 0;
348+
margin-top: 50px;
349+
animation: 1s slidefade .5s forwards;
350+
}
351+
.jumbo-content{
352+
opacity: 0;
353+
margin-top: 50px;
354+
animation: 1s slidefade 1s forwards;
355+
}
356+
@keyframes slidefade {
357+
100% {
358+
opacity: 1;
359+
margin: 0;
360+
}
339361
}

index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
<div class="container">
88
<marquee behavior="scroll" direction="left" bgcolor="white" class="p-1 my-2 bdrRadius">The site is under development, so please mind the messyness. Thank You. </marquee>
99
<div class="jumbotron text-dark text-center">
10-
<h1><strong>Welcome to PyContributors</strong></h1>
11-
<p>A open Source community for Machine Learning and Artificial intelligence.</p>
10+
<div class="jumbo-content">
11+
<h1 class="display-3"><strong>Welcome to PyContributors</strong></h1>
12+
<p>A open Source community for Machine Learning and Artificial intelligence.</p>
13+
</div>
1214
</div>
1315
</div>
1416

@@ -29,7 +31,7 @@ <h1><strong>Welcome to PyContributors</strong></h1>
2931
<div class="container">
3032
<!-- Quote-->
3133
<blockquote class="p-4 blockquote mt-4 text-center">
32-
<p class="mb-0">Code never lies; comments often do. 😉😉</p>
34+
<p class="mb-0"><i class="fa fa-quote-left mr-2"></i> Code never lies; comments often do. 😉😉 <i class="fa fa-quote-right ml-2"></i></p>
3335
<footer class="blockquote-footer">By <cite title="Source Title">Ron Jeffries</cite></footer>
3436
</blockquote>
3537
</div>

join-us/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
title : Join Us
44
active : join-us
55
---
6-
<h1>What is Py_contributors ?</h1>
6+
<h1>What is Py-Contributors ?</h1>
77
<p>Py_Contributors is an open-source community for Python, Machine learning, Web Development and Data Science. Most of us are students and are continuously learning from each other's experiences.</p>
88

9-
<h1>Why to Contribute to open-source ?</h1>
9+
<h1>Why Contribute to Open-Source ?</h1>
1010

1111
<p>Open source projects bring many benefits to those who participate in them, and such experience is great for your CV and greater for your knowledge and skills. By joining a community of like-minded people and polishing up your skills, you can give yourself a step up as an aspiring developer.</p>
1212

0 commit comments

Comments
 (0)