/* *******************************
   CleanRoom.css
   ******************************* */

div.cleanroom {
   display:block;
   margin: 15px;
   padding: 15px;
   border: 20px solid pink;
   border-image: repeating-linear-gradient(
       -55deg,
       #00F,
       #00F 15px,
       #88F 15px,
       #88F 30px
     ) 20;
   break-inside: avoid;
   clear: both;
}

.cleanroom-text {
   color: #000000;
   font-size: 1.25em;
   font-weight: bolder;
}

.cleanroom-text::before {
   content:"This procedure is executed on flight hardware in a cleanroom environment. All factory cleanroom policies apply, including 'top-down' application of head and body garments to maintain the certified cleanliness levels of the work area(s). All personnel intending to touch flight hardware must wear gloves.";
}

.cleanroom img {
   float: left;
   height: 75px;
   content:url("Cleanroom.png");
   padding: 0px 10px 0px 0px;
}

div.cleanroom::after {
    content: "";
    display: block;
    clear: both;
}