scrimba
Note at 2:22
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 2:22
AboutCommentsNotes
Note at 2:22
Expand for more info
index.css
run
preview
console
:root {
--wine-red: #C7375F;
--bright-red: #D42D2F;
--dark-green: #344D2F;
--light-green: #77A047;
--gold: #FAC57D;
--snow: #F0F4F7;
}

html,
body,
* {
margin: 0;
padding: 0;
}

body{
position: relative;
}
body::after{
/* copyright 😁 */
content: 'Created By Govind Kulkarni with ♥';
position: absolute;
z-index: 300;
left: 50%;
top: 2rem;
color: lightcoral;
font-weight: bold;
transform: translateX(-50%);

}



h1 {
color: var(--dark-green);
}


.container {
display: flex;
/* justify-content: center; */
align-items: center;
width: 100%;
min-height: 100vh;
background-image: url('https://drive.google.com/uc?export=view&id=1qvMwry5nH-_VAAMIwwhla2AwGtNEh9vW');
background-size: cover;
background-position: center;
position: relative;
overflow-x: hidden;
}

.container::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5);

}


.container-item {
height: 100vh;
width: 50%;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
position: relative;
z-index: 20;

}

.list {

display: flex;
flex-direction: column;
gap: 2px;
align-items: center;
/* width: 100%; */
height: 100%;
justify-content: center;
background: rgba(0,0,0,0.4);

font-weight: bold;
z-index: 10;
font-size: 30px;
list-style-type: none;
}

.list p {
color: rgba(73, 156, 233, 1);
text-shadow: -4px 8px 10px rgba(153, 192, 229, 0.814), 0 0 10px #40b8d0;
letter-spacing: 4px;
font-weight: 900;
}

.nice-list {
/* background: var(--dark-green); */
}

.naughty-list {
/* background: var(--wine-red); */
}

button {
padding: 1em 2em;
border: none;
font-size: 1.2rem;
background-color: var(--gold);
color: var(--dark-green);
font-weight: 700;
border-radius: 999px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
position: absolute;
z-index: 20;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
}

button:hover {
cursor: pointer;

}

span.add-screen-btn {
position: absolute;
bottom: 2rem;
right: 1rem;
color: rgba(73, 156, 233, 1);
font-size: 1.5rem;
font-weight: bold;
z-index: 100;
cursor: pointer;
background: rgba(0, 0, 0, 0.682);
padding: 4px 8px;
border-radius: 1rem;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.input-container {
position: absolute;
inset: 0;
transform: translateX(100%);
transition: all 1s ease-in;
z-index: 30;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
font-size: 1.2rem;
font-style: italic;
font-weight: bold;

}

#addForm {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.showInput {
transform: translateX(0%);

}

.input-container input {
padding: 8px 16px;
border-radius: 1rem;
box-shadow: 0 0 10px #fff;
background: rgba(153, 192, 229, 0.5);
outline: none;
color: white;
font-size: 1.5rem;
font-style: italic;
font-weight: bold;

}

Console
/index.html
LIVE