Tell us what’s happening:
when i click “run the tests” the program just keeps thinking until i click something else, then all the little beakers come up and its like none of my code is even there. It says i need to do every command still. I’m using firefox and considering that you can’t save the code anymore i do not want to refresh the browser. I’ve already lost the it twice due to updates
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>House Painting</title>
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<div id="house">
<div id="chimney">
<div id="smoke"></div>
</div>
<div id="roof"></div>
<div id="door">
<div id="door-knob"></div>
<div id="door-window"></div>
</div>
<div id="window-1"></div>
<div id="window-2"></div>
<div id="door-mat">HELLO</div>
</div>
</body>
</html>
/* file: styles.css */
body {
height: 100vh;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(to bottom, #0099ff 0%, #339933 100%);
}
#house {
display: flex;
position: relative;
width: 500px;
height: 400px;
background-color: #cc99ff;
border: 5px solid #ffffcc;
}
#chimney {
position: absolute;
width: 75px;
height: 90px;
top: -100px;
left: 70%;
background-color: transparent;
border: 3px solid black;
background: repeating-linear-gradient(
#990000,
#990000 12%,
black 12%,
black 14%
);
z-index: -1;
}
#smoke {
position: absolute;
width: 40px;
height: 40px;
top: -40px;
left: 40%;
border: none;
background-color: rgba(0,0,0,.3);
border-radius: 50%;
box-shadow: 0 -10px 10px 10px rgba(0,0,0,0.3)
}
#roof {
position: absolute;
width: 100%;
height: 28%;
border: none;
background-color: #8800cc;
top: 0;
background: repeating-linear-gradient(45deg, #8800cc, #8800cc 5%, transparent 5%, transparent 10%), repeating-linear-gradient(-45deg, #8800cc, #8800cc 5%, #eeccff 5%, #eeccff 10%)
}
#door {
width: 90px;
height: 160px;
position: absolute;
background-color:#ffffb3;
border: 3px solid #8800cc;
bottom: 0%;
left:185px;
}
#door-knob {
position: absolute;
width: 15%;
height: 10%;
border: none;
background-color: black;
border-radius: 50%;
top: 55%;
right: 5px;
}
#door-window {
position: absolute;
width: 50%;
height: 25%;
border: 2px solid #8800cc;
background-color: black;
left: 25%;
top: 10px;
border-radius: 50%;
background: linear-gradient(#eeccff, white 50%, black 50%)
}
#window-1, #window-2 {
position: absolute;
width: 80px;
height: 100px;
border: 4px solid #8800cc;
background-color: black;
bottom: 130px;
background: linear-gradient(to bottom, #eeccff, white 50%, black 50%)
}
#window-1 {
left: 5px;
}
#window-2 {
right: 5px;
}
#door-mat {
position: absolute;
font-family: papyrus;
font-weight: bold;
width: 120px;
height: 45px;
bottom: -52px;
left: 33%;
border: 3px solid black;
background-color: #eeccff;
transform: skewX(-45deg);
display: flex;
align-items: center;
justify-content: center;
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:144.0) Gecko/20100101 Firefox/144.0
Challenge Information:
Build a House Painting - Build a House Painting
