.panel-status {
  border: 3px solid gray;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.panel-status.status-good {
  border: 3px solid #7FBD0C;
}
.panel-status.status-warning {
  border: 3px solid #ec751a;
}
.panel-status.status-danger {
  border: 3px solid #ec4357;
}

.panel {
  min-width: 255px;
  float: left;
  width: 1200px;
}
.panel.card {
  padding: 0;
}
.panel.panel + .panel {
  margin-left: 20px;
}
.panel .wrap {
  transition: opacity ease-in 200ms;
  opacity: 1;
}
.panel .current-time {
  font-size: 30px;
  color: #797979;
}
.panel .highlight-text {
  background-color: #FF7575;
  color: #fff;
  padding: 1px 4px;
  border-radius: 4px;
}
.panel .tweet-date {
  font-size: 14px;
  color: gray;
  border-radius: 4px;
  border: 1px solid #D4D4D4;
  display: inline-block;
  padding: 2px 4px;
}
.panel .panel-title {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 18px;
  margin: 0;
  padding: 10px 15px;
}
.panel .panel-title .refresh-button {
  float: right;
  border-left: 1px solid #efefef;
  padding-left: 10px;
  text-align: center;
  display: inline-block;
}
.panel .panel-title .refresh-button .last-refresh {
  font-size: 14px;
  font-weight: normal;
  margin-right: 10px;
  display: inline-block;
}
.panel .panel-title .refresh-button.active {
  animation: spin 1s linear infinite;
}
.panel .panel-title .refresh-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.panel .content {
  transition: opacity ease-in 300ms;
  padding: 20px;
  opacity: 0;
}
.panel .content.content-ready {
  opacity: 1;
}
.panel.panel-loading {
  background-image: url("../res/rolling.gif");
  background-repeat: no-repeat;
  background-position: center;
  min-height: 300px;
}
.panel.panel-loading .wrap {
  opacity: 0;
}
.panel .site-favicon {
  margin-right: 10px;
}
.panel .site-version {
  font-size: 14px;
  color: gray;
  border-radius: 4px;
  border: 1px solid #D4D4D4;
  display: inline-block;
  padding: 2px 4px;
  margin-left: 5px;
}
.panel .site-alluptimeratio {
  font-size: 14px;
  color: gray;
}
.panel .site-prop {
  padding: 5px;
  display: inline-block;
}
.panel .site-ssl {
  color: #7FBD0C;
}
.panel .site-url {
  font-size: 14px;
}
.panel .site-url a {
  color: gray;
  text-decoration: none;
}
.panel .site-status {
  border-radius: 50%;
}
.panel .site-status.online {
  background-color: #7FBD0C;
}
.panel .site-status.offline {
  background-color: #ec4357;
  color: #fff;
}
.panel .site-version-status {
  border-radius: 50%;
}
.panel .site-version-status.current {
  background-color: #7FBD0C;
}
.panel .site-version-status.update {
  background-color: #ec751a;
  color: #fff;
}

table {
  overflow-x: scroll;
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
table thead {
  font-size: 14px;
  border-bottom: 1px solid #efefef;
}
table tr:last-child {
  border-bottom: none;
}
table td {
  border: 1px solid #efefef;
  padding: 5px;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.panel-wrap {
  margin: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.tweet-dateq {
  font-size: 14px;
  color: gray;
  border-radius: 4px;
  border: 1px solid #D4D4D4;
  display: inline-block;
  padding: 2px 4px;
}

.preview-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: calc(100vh - 74px - 40px);
}
.preview-wrapper > .preview-code, .preview-wrapper > .card {
  height: 100%;
  overflow: auto;
  flex-basis: 50%;
  flex-grow: 0;
  justify-content: stretch;
}

.preview-code {
  resize: none;
}

/*# sourceMappingURL=main.css.map */
