<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Blog CSS */


.b_wrap {
  float: left;
  display: block;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  width: 100%;
}

.b_wrap &gt; h4 {
  margin: 0;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0px 10px 0px 10px;
  border-bottom: 1px solid #ccc;
  background-color: #ccc;
  color: red;
}

.b_wrap &gt; .blog_img_wrapper {
  min-width: 128px;
  min-height: 128px;
  display: block;
  overflow: hidden;
  float: left;
  border-right: 1px solid #ccc;
  margin: 5px;
}

.b_wrap &gt; .blog_img_wrapper &gt; img {
  min-width: 128px;
  min-height: 128px;
  max-width: 256px;
  max-height: 256px;
  float: left;
}

.b_wrap &gt; .blog_info_wrapper {
  display: block;
  overflow: hidden;
  min-width: 400px;
  max-width: 100%;
  border-bottom: 1px solid #ccc;
}</pre></body></html>