forked from Ishaan28malik/Hacktoberfest-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
386 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
########################################################## | ||
#### WhiteSource "Bolt for Github" configuration file #### | ||
########################################################## | ||
|
||
# Configuration # | ||
#---------------# | ||
ws.repo.scan=true | ||
vulnerable.check.run.conclusion.level=success |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Heys my name is ishaan malik .I am open source enthusiast and love to explore new issues and contribute | ||
this is for beginners who want to learn to create a PR or just like to contribute | ||
## Hey my name is ishaan malik .I am open source enthusiast and love to explore new issues and contribute | ||
## this is for beginners who want to learn to create a PR or just like to contribute | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Since Hacktoberfest is over now we should not stop i think we can increase this community to next level we can create our own community to contribute and also | ||
|
||
# So i will be opening new issues please feel free to solve them and also work with our community thank u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 PythoShark(#techno utopian) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>To-Do List</title> | ||
<link rel="stylesheet" type="text/css" href="todos.css"> | ||
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
|
||
</head> | ||
<body> | ||
<div id="container"> | ||
<h1>ToDo List<i class="fa fa-plus"></i></h1> | ||
<input type="text" placeholder="To-Do Input"> | ||
<ul> | ||
<li><span><i class="fa fa-trash"></i> </span>Lol</li> | ||
<li><span><i class="fa fa-trash"></i> </span>rofl</li> | ||
<li><span><i class="fa fa-trash"></i> </span>WTF</li> | ||
</ul> | ||
|
||
</div> | ||
<!-- <script type="text/javascript" src="/jquery-3.2.1.min.js"></script> --> | ||
<script src="https://code.jquery.com/jquery-3.3.1.slim.js"></script> | ||
<script type="text/javascript" src="./todos.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
body{ | ||
background: #50C9C3; /* fallback for old browsers */ | ||
background: -webkit-linear-gradient(to right, #96DEDA, #50C9C3); /* Chrome 10-25, Safari 5.1-6 */ | ||
background: linear-gradient(to right, #96DEDA, #50C9C3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ | ||
|
||
} | ||
#container{ | ||
width:250px; | ||
margin:20% auto; | ||
background:#f7f7f7; | ||
box-shadow : 0px 0px 1px rgba(0, 0, 0, 0.2); | ||
|
||
} | ||
|
||
h1{ | ||
background-color: steelblue; | ||
color:white; | ||
font-weight:normal; | ||
margin:0; | ||
padding:5px 10px; | ||
text-transform:uppercase; | ||
font-size:24px; | ||
letter-spacing:1.1px; | ||
} | ||
.fa-plus{ | ||
float:right; | ||
} | ||
.fa-trash{ | ||
padding-top:0; | ||
margin:right:20px; | ||
|
||
background:red; | ||
color:white; | ||
text-align:center; | ||
width:0; | ||
display:inline-block; | ||
height:30px; | ||
transition: 0.2s; | ||
|
||
} | ||
|
||
li:hover .fa-trash{ | ||
width:40px; | ||
height: 100; | ||
} | ||
|
||
ul{ | ||
list-style:none; | ||
margin:0; | ||
padding:0; | ||
} | ||
li{ | ||
margin:0px; | ||
padding-top:0px; | ||
line-height:40px; | ||
height:40px; | ||
color:#666; | ||
background-color:#f7f7f7; | ||
|
||
} | ||
li:nth-child(2n){ | ||
background-color:white; | ||
} | ||
input{ | ||
border: 3px rgba(0, 0, 0, 0); | ||
width:100%; | ||
padding:10px 10px 10px 20px ; | ||
box-sizing:border-box; | ||
color:steelblue; | ||
font-size:18px; | ||
background-color:white; | ||
} | ||
input:focus{ | ||
border: 2.5px solid steelblue; | ||
outline:none; | ||
background-color::#f7f7f7; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
$("ul").on("click","li",function(){ | ||
if($(this).css("color") == "rgb(128, 128, 128)"){ | ||
$(this).css({ | ||
color : "black", | ||
textDecoration : "none", | ||
}); | ||
}else{ | ||
$(this).css({ | ||
color : "gray", | ||
textDecoration : "line-through", | ||
}); | ||
} | ||
}); | ||
$("ul").on("click","span",function(e){ | ||
$(this).parent().fadeOut(500,function(){ | ||
$(this).remove(); | ||
}); | ||
e.stopPropagation(); | ||
}) | ||
$("input[type =text]").keypress(function(e){ | ||
if (e.which === 13){ | ||
var todoText =$(this).val(); | ||
$(this).val(""); | ||
$("ul").append("<li><span><i class='fa fa-trash'></i></span>"+todoText+"</li>"); | ||
|
||
} | ||
}); | ||
$(".fa-plus").on("click",function(){ | ||
$("input[type =text]").fadeToggle(); | ||
}) |
Oops, something went wrong.