scrimba
Day 17 JavaScriptmas
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

Day 17 JavaScriptmas
AboutCommentsNotes
Day 17 JavaScriptmas
Expand for more info
index.css
run
preview
console
html, body {
margin: 0;
padding: 0;

}

:root {
--bg-word: #5134ff;
}

.container {
display: flex;
align-items: center;
justify-content: center;
margin-top: 15%
}

h1 {
font-family: Arial, sans-serif;
font-size: 2em;
color: black;
position: relative;
margin-left: 5px;
}

h1::after {
content: "";
animation: carousel 4s infinite;
background: var(--bg-word);
color: white;
border-radius: 2px;
padding: 10px
}

@keyframes carousel {
0% {
content: "Scrimba";
}
25% {
content: "Scrimba's";
}
50% {
content: "JavaScriptmas";
}
75% {
content: "challenge";
}
100% {
content: "Scrimba";
}
}
Console
/index.html
LIVE