scrimba
Learn JavaScript
Chrome Extension
Style the delete button
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Style the delete button
AboutCommentsNotes
Style the delete button
Expand for more info
index.css
run
preview
console
body {
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
min-width: 400px;
}

input {
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #5f9341;
margin-bottom: 4px;
}

button {
background: #5f9341;
color: white;
padding: 10px 20px;
border: none;
font-weight: bold;
}

/* Style the button according to the provided design */

ul {
margin-top: 20px;
list-style: none;
padding-left: 0;
}

li {
margin-top: 5px;
}

a {
color: #5f9341;
}


Console
/index.html
-3:17