Skip to content
This repository has been archived by the owner on Jan 18, 2019. It is now read-only.

added Bhupesh-V #19

Merged
merged 1 commit into from
Oct 3, 2018
Merged
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
19 changes: 19 additions & 0 deletions Bhupesh-V/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>Bhupesh-v</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>

<h2>CSS Buttons</h2>
<h3>Style 1</h3>
<button>Normal</button>
<h3>Style 2</h3>
<button class="button">Styled Button</button>
<h3>Style 3</h3>
<button class="button button5">50%</button>
<h3>Style 4</h3>
<button class="button button2">Shadow on Hover</button>
</body>
</html>
18 changes: 18 additions & 0 deletions Bhupesh-V/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 25px;
text-align: center;
font-size: 16px;
cursor: pointer;
}
.button5 {border-radius: 50%;}

.button2:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.button:hover {
background-color: blue;
}