<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> /* 
⚠️
colors could be added to tailwind.js config file 
*/
body{
  background: dodgerblue;
}

.bg-brand{
    background: deepskyblue;
  }
 
  
  /* some resets */
  :focus{
    outline:none!important;
    border:none;
  }
  
  

  button#add {
    background-color: chartreuse;
    width: 125px;
    height: 40px;
   margin: 15px;
  }
  .min-h-screen {
     min-height: fit-content; 
}

.hidden {
  display: none;
}
.message {
  background: #fff;
  border-radius: 0.3125em;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.25);
  margin: 35px;
  justify-content: center;
  float: left;
  padding: 12px;
  width: 320px;
}
.message .message-content {
  padding: 1.5em;
}
.message p {
  padding: 0;
  margin: 0 0 1em 0;
}
.message p:first-child {
  color: gray;
  font-size: 0.85em;
  font-weight: 300;
}
.message textarea {
  border: none;
  width: 100%;
  height: 100%;
  min-height: 6em;
}
.message textarea:focus {
  outline: none;
}

.cf button {
  background: #ddd;
  border: none;
  color: #1782fb;
  float: left;
  font-size: 0.75em;
  font-weight: 700;
  outline: none;
  padding: 1em 2em;
  text-align: center;
  text-transform: uppercase;
  transition: 0.25s;
  width: 50%;
}
.cf button:hover {
  background: #1782fb;
  color: #fff;
}
.cf button:first-child {
  border-bottom-left-radius: 0.3125em;
  color: #a1a1a1;
}
.cf button:first-child:hover {
  color: #fff;
}
.cf button:last-child {
  border-bottom-right-radius: 0.3125em;
}</pre></body></html>