Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AI Task Completed #755

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
1 change: 1 addition & 0 deletions AI/Task Submission/Subham Mishra.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/subhamctc3007/Enigma-Induction-Week-4
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

*{
margin: 0px;
padding: 0px;
background-color: rgb(243, 243, 243);
background: #0d1420;
font-family: sans-serif;
}

Expand All @@ -14,7 +16,7 @@
h1{
font-size: 50px;
font-weight: 400;
color: rgb(50, 180, 255);
color: rgb(0, 144, 144);
margin-bottom: 20px;
}
img{
Expand All @@ -27,7 +29,7 @@ img{
p{
font-size: 20px;
font-weight: 200;
color: #444;
color: aliceblue;
}

.interests{
Expand Down Expand Up @@ -77,8 +79,8 @@ p{
.home button{
margin: 0px 15px;
display: inline-block;
color: #fff;
background-color: rgb(50, 180, 255);
color: aliceblue;
background-color: rgb(0, 144, 144);
border: none;
border-radius: 5px;
padding: 12px 20px;
Expand All @@ -87,14 +89,13 @@ p{
transition: 0.08s ease-in;
}
.home button:hover{
background-color: rgb(0, 144, 227);
box-shadow: #444;
background-color: rgb(0, 97, 97);
}

footer{
max-width: 100%;
padding: 20px;
background-color: rgb(50, 180, 255);
background-color: rgb(0, 144, 144);
text-align: center;
margin-top: 30px;
}
Expand Down
64 changes: 52 additions & 12 deletions Web Development/Task-1/Task Submission/Subham Mishra/css/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,34 @@
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

*{
margin: 0px;
padding: 0px;
background-color: rgb(243, 243, 243);
font-family: sans-serif;
background: #0d1420;
font-family: "Raleway", sans-serif;
}
nav{
background: black;
padding: 20px;
display: flex;
}
nav .pages{
background-color: black;
}
nav .home{
margin: 0px 30px 0px 50px;
}
nav .pages a{
text-decoration: none;
background-color: black;
color: aliceblue;
font-size: 20px;
border: none;
border-radius: 10px;
padding: 5px 7px;
}
nav .pages a:hover{
background-color: aliceblue;
color: black;
}
header{
text-align: center;
Expand All @@ -14,15 +40,16 @@ header{
margin-top: 25px;
}
.heading h1{
font-family: sans-serif;
font-size: 50px;
font-weight: 800;
color: rgb(50, 180, 255);
color: rgb(0, 144, 144);
margin-bottom: 10px;
}
.heading p{
font-size: 20px;
font-weight: 200;
color: #444;
color: aliceblue;
}
.content{
display: flex;
Expand All @@ -43,11 +70,11 @@ header{
}
.message h2{
margin: 15px;
color: #444;
color: aliceblue;
font-size: 24px;
}
.message p{
color: #444;
color: aliceblue;
font-size: 18px;
line-height: 1.5em;
margin: 15px;
Expand All @@ -70,19 +97,19 @@ header{
max-width: 100%;
max-height: 100%;
padding: 5px;
border: 0;
border: none;
border-radius: 20px;
}
.links li img:hover{
background-color: #ccc;
background-color: #24334d;
}


.read_more{
margin: 0px 15px;
display: inline-block;
color: #fff;
background-color: rgb(50, 180, 255);
color: aliceblue;
background-color: rgb(0, 144, 144);
border: none;
border-radius: 5px;
padding: 12px 20px;
Expand All @@ -100,7 +127,8 @@ footer{
max-width: 100%;
margin: 60px 0px 0px 0px;
padding: 20px;
background-color: rgb(50, 180, 255);
background-color: rgb(0, 144, 144);
color: black;
text-align: center;
}

Expand Down Expand Up @@ -200,7 +228,19 @@ footer{
font-size: 14px;
}
}

@media screen and (max-width:420px){
nav{
padding: 12px;
}
.home{
margin: 0px 15px 0px 30px;
}
.pages a{
font-size: 16px;
border-radius: 8px;
padding: 5px 7px;
}
}

@media screen and (max-width: 400px){
.content .cover{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@
<title>About Me</title>
</head>
<body>
<nav id="top">
<div class="pages home">
<a href="https://subhamctc3007.github.io/subhamctc3007.github.io" target="_parent">Home</a>
</div>
<div class="pages gallery">
<a href="https://subhamctc3007.github.io/Gallery" target="_blank">Gallery</a>
</div>
</nav>

<header>
<div class="heading">
<h1>About Me</h1>
Expand Down