- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Challenge: Dim Shadows</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<button class="btn btn1" type="button">Button 1</button>
<button class="btn btn2" type="button">Button 2</button>
<button class="btn btn3" type="button">Button 3</button>
</body>
</html>
CSS
html,
body {
margin: 0;
padding: 0;
width: 300px;
background-color: white;
font-size: 18px;
font-family: "Arial", sans-serif;
}
.btn {
display: block;
margin: 35px auto;
padding: 15px 20px;
width: 150px;
border-radius: 5px;
border: none;
box-sizing: content-box;
background-color: #bdc3c7;
color: white;
text-align: center;
text-transform: uppercase;
font: inherit;
}
.btn1 {
}
.btn2 {
}
.btn3 {
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.