scrimba
Note at 1:58
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

Note at 1:58
AboutCommentsNotes
Note at 1:58
Expand for more info
index.css
run
preview
console
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;800&display=swap');

html, body {
font-family: BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
}

.title{
text-align: center;
}

.target, .spin{
display: flex;
justify-content: center
}

#result{
color: blue;
text-align: center;
}

button{
width: 120px;
padding: 10px;
border: none;
display: block;
margin-left: auto;
outline: none;
color:white;
margin-right: auto;
border-radius: 10px;
background-image: linear-gradient(286deg, rgb(76, 160, 252) 23%, rgb(224, 47, 238) 76%);
}

button:focus{
outline: none;
}
Console
/index.html
LIVE