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

updated commit #338

Open
wants to merge 1 commit into
base: master
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
45 changes: 37 additions & 8 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@
}
}


*::-webkit-scrollbar{
display: none;
}

/********************************************************/

Expand Down Expand Up @@ -182,7 +184,7 @@ body {
background-repeat: repeat-x;
background-position: bottom left;
background-attachment: fixed;
background-color: #fdfdfd;
background:linear-gradient(to right,#fa29ab 0%,transparent 60%);
animation: bg-animate 8s linear infinite alternate both;
cursor: url("https://i.ibb.co/h7cGf6X/benni-pointer.gif"), auto;
}
Expand Down Expand Up @@ -506,13 +508,18 @@ canvas {
text-shadow: 2px 2px 5px black;
background-color: #ff69b4;
color:white;
box-shadow: 3px 3px 0px #fdfdfd,
-3px -3px 0px #f7f5f7;
border-radius: 41px;
}

.my-name:hover{
animation: shake 0.5s;
animation-iteration-count: infinite;
background-color: #ff69b4;
color: #fdfdfd;
color: #fdfdfd;
box-shadow: 0px 0px 0px #fdfdfd,
-0px -0px 0px #f7f5f7;
}

.play2048 {
Expand Down Expand Up @@ -571,12 +578,14 @@ canvas {
}

.nav-list li {
width: 135px;
width: 145px;
position: relative;
top: 5px;
text-align: center;
border-radius: 10px;
border: 2px solid transparent;
transition: all 0.7s linear;

}

.nav-list li::before {
Expand All @@ -590,19 +599,25 @@ canvas {
}

.nav-list li>a {
height: 35px;
height: 50px;
margin-right: 0;
line-height: 35px;
text-decoration: none;
display: block;
color: #fff;
background-color: #ff69b4;
transition: all 0.7s linear;
border-radius: 41px;
padding-top: 7px;
box-shadow: 2px 2px 2px #ce6ccb,
-2px -2px 2px #ff98ff;
}

.nav-list li:hover>a {
color:#ff69b4;
background-color: #fff;
box-shadow: 0px 0px 2px #fff,
-0px -0px 2px #fff;
}

.nav-list li.eye-symbol {
Expand Down Expand Up @@ -953,7 +968,10 @@ footer {
flex-direction: column;
justify-content: space-between;
/*background: linear-gradient(76.04deg, #ffc337 -0.33%, #ff00aa 100.08%);*/
background-color: #f2f2f2;
background:linear-gradient(to bottom right,white 0%, grey 100%);
border-radius: 10px;
box-shadow: 2px 2px 1px #f7f3f6,
-2px -2px 1px #f7f4f7;
}

footer .numbers {
Expand Down Expand Up @@ -1017,11 +1035,15 @@ footer .numbers {
text-transform: capitalize;
background-color: #f33ec6;
cursor: pointer;
transition: 1s;
}


.field .btn:hover {
background-color: #673ab7;
background:transparent;
color: #ffffff;
font-size: 36px;
letter-spacing: 2;
}

fieldset legend {
Expand Down Expand Up @@ -1280,6 +1302,10 @@ ul.skills>li:hover {
width: 100%;
max-width: 500px;
margin: 0 auto 2rem;
transition: 2s;
}
#untitled-goose-game:hover{
transform: rotateY(90deg) rotateX(10deg);
}


Expand Down Expand Up @@ -1318,7 +1344,10 @@ video{


/********************************************************/

/**favourite movies**/
img:hover{
transform: rotateY('360 deg');
}



Expand Down
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>


</head>
<body onload="alert('Welcome to my site.')">

Expand Down Expand Up @@ -157,27 +158,27 @@

<li>
<a href="#home" onclick="topFunction()" title="Home">
<span>Home</span>
<span>Home</span>
</a>
</li>
<li>
<a href="#basic" title="About">
<span>Info</span>
<span>Info</span>
</a>
</li>
<li>
<a href="#contact" title="Contact">
<span>Reach us</span>
<span>Reach us</span>
</a>
</li>
<li>
<a href="#games" title="Games">
<span>Play Games</span>
<span>Play Games</span>
</a>
</li>
<li>
<a href="#" onClick="alert('Has this portfolio given you a headache? Hire Benny Carlsson then go for a nice lie down!!')" title="headache">
👀 <span>My eyes!</span>
👀 <span>My eyes!</span>
</a>
</li>
<li class="eye-symbol">
Expand Down Expand Up @@ -463,6 +464,7 @@ <h6 class="contact-title">Send Message</h6>
</div>
<div class="field">
<button class="btn" type="submit">Submit</button>
<div class="liquid"></div>
</div>
</form>
<div class="contact">
Expand Down