forked from Vishal-raj-1/Awesome-JavaScript-Projects
-
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
46 changed files
with
5,676 additions
and
2,106 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,3 @@ | ||
# These are supported funding model platforms | ||
custom: ['https://www.paypal.me/vishalraj25', 'https://paytm.me/a15-Za9'] | ||
github: Vishal-raj-1 |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,79 @@ | ||
html{ | ||
height: 100%; | ||
} | ||
|
||
body{ | ||
height: 100%; | ||
background-image: linear-gradient(#7B9F35,#226666); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
} | ||
|
||
.game { | ||
/* position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); */ | ||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); | ||
background-color: tomato; | ||
padding: 15px; | ||
border-radius: 5px; | ||
} | ||
|
||
.grid{ | ||
display: grid; | ||
grid-template-columns: 80px 80px 80px 80px; | ||
grid-template-rows: 80px 80px 80px 80px; | ||
border: 1px solid #550000; | ||
} | ||
|
||
.grid button{ | ||
background-color: #cfcfcf; | ||
color: #56A7E8; | ||
font-size: 24px; | ||
font-weight: bold; | ||
border: 1px solid #354F00; | ||
outline: none; | ||
cursor: pointer; | ||
} | ||
|
||
.footer{ | ||
margin-top: 15px; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.footer button{ | ||
border: none; | ||
font-size: 20px; | ||
font-weight: bold; | ||
border-radius: 5px; | ||
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); | ||
padding: 5px; | ||
width: 80px; | ||
background-color: #7B9F35; | ||
color: #354F00; | ||
outline: none; | ||
cursor: pointer; | ||
} | ||
|
||
.footer button:hover{ | ||
color: #D4EE9F; | ||
background-color: #354F00; | ||
} | ||
|
||
.footer span{ | ||
flex: 1; | ||
text-align: center; | ||
font-size: 20px; | ||
color: yellow; | ||
font-weight: bold; | ||
margin: auto; | ||
} | ||
|
||
.message{ | ||
color: tomato; | ||
height: 80px; | ||
} |
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,107 @@ | ||
body | ||
{ | ||
background: url(https://cdn.pixabay.com/photo/2016/01/19/14/53/book-1149031__340.jpg) center center fixed; | ||
text-align: center; | ||
background-size: cover; | ||
} | ||
#header | ||
{ | ||
background: linear-gradient(white,rgba(128,128,128,0.1)); | ||
background:-o-linear-gradient(white,rgba(128,128,128,0.1)); | ||
background:-moz-linear-gradient(white,rgba(128,128,128,0.1)); | ||
background:-webkit-linear-gradient(white,rgba(128,128,128,0.1)); | ||
height: 70px; | ||
width: 500px; | ||
margin: 8px auto; | ||
font-size: 2em; | ||
color: rgb(7, 7, 7); | ||
line-height: 60px; | ||
} | ||
.inputContainer | ||
{ | ||
width: 300px; | ||
margin: 0 auto; | ||
} | ||
.input | ||
{ | ||
height: 40px; | ||
font-size: 1.6em; | ||
} | ||
#slider | ||
{ | ||
margin: 10px auto; | ||
} | ||
#circle | ||
{ | ||
height: 5px; | ||
width: 1px; | ||
border-radius: 50%; | ||
background: black; | ||
margin: 0 auto; | ||
position: absolute; | ||
top: 60%; | ||
left: 50%; | ||
transform:translate(-50%, -50%); | ||
-webkit-transform:translate(-50%, -50%); | ||
-moz-transform:translate(-50%, -50%); | ||
-o-transform:translate(-50%, -50%); | ||
} | ||
#thicknessInput | ||
{ | ||
position: relative; | ||
} | ||
#container | ||
{ | ||
width: 500px; | ||
height: 400px; | ||
border: 1px solid rgba(122,174,229,0.5); | ||
margin: 10px auto; | ||
} | ||
.inputContainer2 | ||
{ | ||
width: 399px; | ||
margin: 0 auto; | ||
} | ||
#paint | ||
{ | ||
background-color: #fff; | ||
cursor: crosshair; | ||
} | ||
.input2 | ||
{ | ||
width: 133px; | ||
color: grey; | ||
font-size: 1.0em; | ||
float: left; | ||
} | ||
.button | ||
{ | ||
background: #fff; | ||
height: 50px; | ||
padding: 10px; | ||
border-radius: 3px; | ||
font-weight: bold; | ||
cursor: pointer; | ||
box-shadow: 0px 4px rgba(0,0,0,0.3); | ||
-webkit-box-shadow: 0px 4px rgba(0,0,0,0.3); | ||
-moz-box-shadow: 0px 4px rgba(0,0,0,0.3); | ||
-o-box-shadow: 0px 4px rgba(0,0,0,0.3); | ||
position: relative; | ||
} | ||
.button:hover | ||
{ | ||
color: white; | ||
background: linear-gradient(white,rgba(128,128,128,0.1)); | ||
background:-o-linear-gradient(white,rgba(128,128,128,0.1)); | ||
background:-moz-linear-gradient(white,rgba(128,128,128,0.1)); | ||
background:-webkit-linear-gradient(white,rgba(128,128,128,0.1)); | ||
} | ||
.button:active | ||
{ | ||
top: 4px; | ||
} | ||
.eraseMode | ||
{ | ||
background-color: red; | ||
color: #fff; | ||
} |
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
Oops, something went wrong.