scrimba
UI Design
Gradients
Challenge 2: Button Gradient
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

Challenge 2: Button Gradient
AboutCommentsNotes
Challenge 2: Button Gradient
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;
}

body {
height: 100vh;
}

.container {
padding: 4em 2em;
height: 50vh;
color: white;
background: linear-gradient(180deg, rgba(44,0,255,1) 0%, rgba(138,0,226,1) 100%);
position: relative;
z-index: 1;
}

h1 {
margin-top: 2em;
}

p {
line-height: 1.4em;
}

img {
position: absolute;
left: -20px;
top: 3em;
z-index: -1;
}

a {
color: white;
text-decoration: none;
padding: .6em 1em;
margin-top: 1em;
display: inline-block;
color: black;
font-weight: bold;
border-radius: .3em;
background: white;
}
Console
/index.html
-7:11