diff --git a/css/style.css b/css/style.css index d01a4e1..513d404 100644 --- a/css/style.css +++ b/css/style.css @@ -14,6 +14,41 @@ body{ background: #f1f1f1; } +nav{ + width: 100%; + background: #333; + padding: 20px; + display: flex; + justify-content: space-between; + align-items: center; +} + +nav .brand{ + font-size: 24px; + font-weight: 600; + color: #fff; + text-decoration: none; +} + +nav ul{ + list-style: none; + display: flex; +} + +nav ul li{ + margin-left: 20px; +} + +nav ul li a{ + text-decoration: none; + color: #333; + font-weight: 500; +} + +nav ul li a:hover{ + color: #3498db; +} + .hero{ width: 100%; padding: 10%; @@ -82,7 +117,84 @@ body{ transform: translateY(-10px); } .skills .container .skill h3{ - font-size: 30px; + font-size: 23px; font-weight: 600; color: #333; + text-wrap: nowrap; + padding: 5px; +} +.skills .container .skill ul{ + margin-top: 20px; + list-style: none; + text-align: left; +} +.skills .container .skill ul li{ + font-size: 22px; + color: #333; + margin: 10px 0; + font-weight: 800; + /* Linear gradient of blue, red, indigo and so nice */ + background: linear-gradient(90deg, #11517c, #380e4b, #1e2e38); + background-clip: text; + -webkit-background-clip: text; + -moz-background-clip: text; + color: transparent; +} + + +.discord-bots{ + width: 100%; + padding: 10%; + text-align: center; + background: #fff; +} +.discord-bots h2{ + font-size: 40px; + font-weight: 600; + color: #333; + margin-bottom: 20px; +} +.discord-bots .container{ + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap; +} +.discord-bots .container .discord-bot{ + width: 250px; + height: 300px; + margin: 20px; + background-color: #fff; + border-radius: 10px; + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + transition: 0.3s; +} +.discord-bots .container .discord-bot:hover{ + transform: translateY(-10px); +} +/* Invite Link style */ +.discord-bots .container .discord-bot a{ + text-decoration: none; + color: #333; + font-weight: 600; + font-size: 20px; + margin-top: 20px; + padding: 10px 20px; + border-radius: 5px; + background: #3498db; + color: #fff; + transition: 0.3s; +} + +/* Footer */ +footer{ + width: 100%; + padding: 20px; + background: #333; + color: #fff; + text-align: center; } \ No newline at end of file diff --git a/index.html b/index.html index f589f09..e9ca18e 100644 --- a/index.html +++ b/index.html @@ -57,23 +57,47 @@

Hello, I'm Mahib Abrar

My Skills

-

Web Development

+

Web Development

- -

Programming Languages

+

Programming Languages

+
+

Frameworks

+ +
+ + +
+

Discord Bots

+
+
+ Quran Bot +

Quran Bot

+

It is a bot that can play al quran in your voice channel!

+ Invite +
+
+ + + \ No newline at end of file