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

add new file with my html buttons #34

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
Binary file added pfistersimon/._index.html
Binary file not shown.
Binary file added pfistersimon/._style.css
Binary file not shown.
30 changes: 30 additions & 0 deletions pfistersimon/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="EN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<title>Buttons</title>
<link rel="stylesheet" href="style.css">
</head>


<body>
<div class="container">
<h1>HTML Buttons</h1>

<br>

<button type="submit" id="btn-01" name="user_submit01">Button1</button>
<br>

<button type="submit" id="btn-02" name="user_submit02">Button2</button>
<br>

<button type="submit" id="btn-03" name="user_submit03">Button3</button>



</div>
</body>
</html>
78 changes: 78 additions & 0 deletions pfistersimon/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/* Baisic Layout */

* {
box-sizing: border-box;
margin: 0 auto;
padding: 0;
}

/* Layout Style */

body {
background-color: #ffbc7a;
text-align: center;
}

h1 {
margin: 20px 0 50px;
}

#btn-01 {
margin-bottom: 50px;
width: 50px;
height: 50px;
background-color: #00ffbb;
border-radius: 3px;


}

#btn-01:hover {
background-color: #ff0044;
font-weight: bold;
}

#btn-02 {
margin-bottom: 50px;
width: 100px;
height: 40px;
background-color: #000;
color: #fff;
font-weight: bold;
box-shadow: 3px 3px 3px 2px #fff;
}

#btn-02:active {
box-shadow: 3px 3px 3px 2px #f9f761;

}

#btn-03 {

width: 80px;
height: 80px;
border-radius: 50%;
background-color: blue;
color: #fff;
}


#btn-03:hover {
width: 50px;
height: 50px;
border-radius: 25%;
background-color: lightblue;

}