User:Aesulus/Vector 2022 banner.css: Difference between revisions

From Hololive Fan Wiki
Content added Content deleted
No edit summary
No edit summary
Tags: Mobile edit Mobile web edit
Line 25: Line 25:
align-items: center;
align-items: center;
gap: 0.5rem;
gap: 0.5rem;
white-space: nowrap;
}
}


Line 33: Line 34:
justify-content: center;
justify-content: center;
}
}
.hfw_notice_buttons { flex-direction: row; }
.hfw_notice_buttons {
flex-direction: row;
white-space: inherit;
}
}
}

Revision as of 13:58, 25 July 2022

.hfw_notice {
  border: solid cornflowerblue;
  padding: 10px;
}
.hfw_notice_content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.hfw_notice_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hfw_notice_text_title {
  font-weight: bold;
}

.hfw_notice_buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

@media all and (width <= 450px) {
  .hfw_notice_image { display: none; }
  .hfw_notice_content { 
    flex-wrap: wrap;
    justify-content: center;
  }
  .hfw_notice_buttons {
    flex-direction: row;
    white-space: inherit;
  }
}