DEV Community

Cover image for CSS Halloween: The Code is Sus.
Chris Jarvis
Chris Jarvis

Posted on • Updated on

CSS Halloween: The Code is Sus.

I am continuing my CSS Halloween Ugly Sweater Series. Links to previous posts are above.

ugly black sweater. It has a row white stitching to make boxes. Under that a row of alternating square of orange and white.

This is the basic sweater. Click to see how it was made. A black background with a row of white boxes filled with bats and eyes. Under that a row of alternating white and orange boxes. Then, a large open area of black, the sweater torso, followed by the rows of boxes in reverse order.
I placed a character div in that torso div. Inside the character div is a div for a specific character for this post it has a class of crewmate.

Add the Character

<div class="torso"> 
.
.
.

   <div class="character">
     <div class="crewmate"></div>   
   </div character>
.
.
.
</div>
Enter fullscreen mode Exit fullscreen mode
/* CHARACTER //////////////// */

.character {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    overflow: visible;
    }
Enter fullscreen mode Exit fullscreen mode

I reused the basic shapes from previous characters. A square turned to a circle using border-radius on each corner. I layered a long rectangle on top of the circle by placing a visor div inside the crewmate div.

I made one crewmate. To match the look of the game, I gave it a border: 6px solid #000 and changed the overall background from black (000) to #333 to show the black border. The black border on the crewmate was blending in with the background.

Red astronaut helmet

.crewmate {
    background-color: #c13725;
    height: 200px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center; 
    overflow: visible;
    flex-direction: column;

    border-top-right-radius: 40%;
    border-top-left-radius: 45%;
    border-bottom-right-radius: 48%;
    border-bottom-left-radius: 48%; 
    border: 6px solid #000;

    justify-content: space-between;
    z-index: 0;
    margin-left: 10px; 
}

.visor {
    width: 140px;
    height: 75px;
    border-radius: 20%;
    background: #74d5eb;
    margin-left: 0px;
    margin-top: 20px; 
    display: flex;
    position: relative;
    flex-direction: row-reverse;
    overflow: overlay;
    z-index: 1;
    border: 8px solid black;
    justify-content: space-between;
}

Enter fullscreen mode Exit fullscreen mode

The Crew's All Here.

With the first crewmate looking decent I added more of them. Each crewmate has their own class with a different background color. The background color from the generic crewmate was removed since it's replaced on each crewmate. The color is the only difference from the styling of the basic crewmate. I also added a light reflection to visor.

Five astronaut space helmets in red, blue, green, yellow, and purple.

    <div class="character">


        <div class="crewmate red">    
            <div class="visor">
                <div class="visorReflect"></div>
            </div>
        </div>

        <div class="crewmate blue">    
            <div class="visor">
                <div class="visorReflect"></div>
           </div>
        </div>
        <div class="crewmate green">    
            <div class="visor">
                <div class="visorReflect"></div>
            </div>
        </div>

        <div class="crewmate yellow">    
            <div class="visor">
                <div class="visorReflect"></div>
            </div>
        </div>

        <div class="crewmate purple">    
            <div class="visor">
                <div class="visorReflect"></div>
            </div>
        </div>

    </div character>

Enter fullscreen mode Exit fullscreen mode

.red {
    background-color: #c13725;

}
.blue {
    background-color: royalblue;

}
.yellow {
    background-color: yellow;

}
.green {
    background-color: green;
}

.purple {
    background-color: rebeccapurple;
}

.visorReflect{
    background-color: white;
    height: 24px;
    width: 140px;
    border-radius: 30%;
    margin-top: -2px;
    margin-right: 0px;
    border-bottom: 2px solid #5c5ca2;

}

Enter fullscreen mode Exit fullscreen mode

Emergency meeting!

all five astronauts

In this step I changed the background to linear gradient. I originally tried to match red from the Emergency meeting message from the game. The results were ok but not great. I played with the colors till it reminded me of candy corn. The color on bottom was the first version of my background color.

I changed the main background back to black. If this was an website or app with text I would use #333 for background for readability. White text on black background can blur for some readers and cause eye strain.

But since this is for an image I want the sharper contrast.

.main {/* changed background color to black */
    background: #000;

}

.torso {
    height: 75%;
    width: 100%;
    background:   linear-gradient(
      #fff, #FFC107, 
       rgba(255, 0, 0, 0.45)
    );
}


Enter fullscreen mode Exit fullscreen mode

What is Among Us?

Five astronaut helmets on a gradient background. the top is white, changes to orange then dark orange. One helmet is clear you can see a skull inside. Like the villains in a Doctor Who episode.

Hey, who turned out the lights? What happening did someone attack Yellow?

Is there an imposter here? No, Yellow is in a Halloween mask. I gave the visor a new class, added an image background, and removed the light reflection div.

.skullCrew {
    background-image: url(skull.jpg);
    background-size: 100% 100%;
}

Enter fullscreen mode Exit fullscreen mode
    <div class="crewmate yellow">    
      <div class="visor skullCrew"></div>
    </div>

Enter fullscreen mode Exit fullscreen mode

Wrap Up

This was a fun exercise. It was good to build a character with just a few divs. Then make them different by changing the only background color.

all five astronauts

Take Aways

There are no Imposters here, just developers like you.

If you want to see my other CSS creations look here, Halloween characters faces and Ugly Sweaters.

-$JarvisScript git push
Enter fullscreen mode Exit fullscreen mode

Latest comments (9)

Collapse
 
insidiousthedev profile image
Insidious • Edited

very cool
they indeed look sus 👀

Collapse
 
jarvisscript profile image
Chris Jarvis

Thank you.

Collapse
 
toour profile image
Turan Kılıç

That's great !! Well done !

Collapse
 
jarvisscript profile image
Chris Jarvis

Thank you, it was a fun project.

Collapse
 
toour profile image
Turan Kılıç

Yea, it seems like that ^^

Collapse
 
colabottles profile image
Todd Libby

Wicked awesome! 🦞

Collapse
 
jarvisscript profile image
Chris Jarvis

Thank You.

Collapse
 
kirkcodes profile image
Kirk Shillingford

Incredible work!

Collapse
 
jarvisscript profile image
Chris Jarvis

Thanks!