Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
24 changes: 3 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,7 @@
</head>

<body>
<div id="slideout-menu">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="blogslist.html">Blog</a>
</li>
<li>
<a href="blogslist.html">Projects</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<input type="text" placeholder="Search Here">
</li>
</ul>
</div>


<nav>
<div id="logo-img">
Expand Down Expand Up @@ -74,7 +56,7 @@ <h3>Learn coding from scratch</h3>

<main>
<a href="blogslist.html">
<h2 class="section-heading">All Blogs</h2>
<h2 class="section-heading none">All Blogs</h2>
</a>

<section>
Expand Down Expand Up @@ -175,7 +157,7 @@ <h2 class="section-heading">Source Code</h2>
<div id="left-footer">
<h3>Quick Links</h3>
<p>
<ul>
<ul class="footer-dlo">
<li>
<a href="index.html">Home</a>
</li>
Expand Down
39 changes: 29 additions & 10 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ body {
}

h1 {

padding: 8px;
background: rgba(255, 0, 0, 0.8);
background: black;
border-radius: 8px;
margin: 0;
font-size: 64px;
Expand All @@ -14,6 +15,8 @@ h1 {

p {
line-height: 1.5;
font-size: 20px;
font-weight: 800;
}

main {
Expand Down Expand Up @@ -111,7 +114,7 @@ nav a {

nav a:hover {
text-decoration: none;
color: red;
color: rgb(255, 255, 255);
}

nav ul {
Expand All @@ -124,7 +127,7 @@ nav ul {
}

.active {
color: #f783ae;
color: #fafafa;
}

#logo-img {
Expand Down Expand Up @@ -157,14 +160,14 @@ nav ul {
/* Search Icon */

#search-icon {
color: white;
color: rgb(136, 136, 136);
padding: 0 32px;
cursor: pointer;
transition: 0.4s;
}

#search-icon:hover {
color: red;
color: rgb(140, 140, 140);
}

/* Slideout Menu */
Expand Down Expand Up @@ -225,7 +228,7 @@ section {

.section-heading:hover {
padding: 4px 48px;
background: red;
background: rgb(125, 125, 125);
}

/* Section Source */
Expand Down Expand Up @@ -280,7 +283,7 @@ section {
}

.btn-readmore:hover {
background: red;
background: rgb(5, 5, 5);
text-decoration: none;
padding: 8px 64px 8px 24px;
color: white;
Expand All @@ -289,6 +292,8 @@ section {
/* Footer */

footer {
width: 100%;
border-radius:10px ;
background: black;
padding: 8px;
color: #eee;
Expand All @@ -301,7 +306,7 @@ footer a {

footer #left-footer {
flex: 1;
border-right: 1px solid red;
border-right: 1px solid rgb(0, 0, 0);
padding-left: 32px;
}

Expand Down Expand Up @@ -338,7 +343,7 @@ footer #social-media-footer ul li {
}

footer #social-media-footer ul li:hover a .fa-youtube {
color: red;
color: rgb(105, 104, 104);
}

footer #social-media-footer ul li:hover a .fa-facebook {
Expand All @@ -364,7 +369,7 @@ footer #social-media-footer ul li:hover a .fa-github {

.page-heading:hover{
padding:4px 48px;
background:red;
background:rgb(145, 145, 145);
}

.card-meta{
Expand Down Expand Up @@ -530,6 +535,14 @@ footer #social-media-footer ul li:hover a .fa-github {
}
}

img{
border-radius: 10px;
}
h3{
text-align: center;
font-size: 30px;
}

@media (min-width: 720px) {
main {
width: 95%;
Expand All @@ -546,4 +559,10 @@ footer #social-media-footer ul li:hover a .fa-github {
main {
width: 85%;
}
}
.none{
opacity: 0;
}
.footer-dlo{
font-size: 23px;
}