scrimba
Note at 1:25
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:25
AboutCommentsNotes
Note at 1:25
Expand for more info
style.css
run
preview
console
body {
background-color: #AEB8FE;
display: flex;
}

.dice {
width: 90px;
height: 90px;
border-radius: 10px;
background-color: #EFE5DC;
margin: 100px;
position: relative;
}

.dot {
position: absolute;
width: 20px;
height: 20px;
border-radius: 15px;
background-color: black;
display: none;
}

.dot.show {
display: initial;
}

#d1 {
top: 10px;
left: 10px;
}

#d2 {
top: 35px;
left: 10px;
}

#d3 {
bottom: 10px;
left: 10px;
}

#d4 {
top: 35px;
left: 32.5px;
}

#d5 {
top: 10px;
right: 10px;
}

#d6 {
top: 35px;
right: 10px;
}

#d7 {
bottom: 10px;
right: 10px;
}
Console
1
,
3
,
2
,
5
,
3
,
4
,
0
,
0
,
3
,
3
,
2
,
1
,
1
,
/index.html
LIVE