chat_room_footer.css 1.25 KB
Newer Older
藤川諒 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
@charset "UTF-8";

/**************************** footer *************************/
footer{
  max-width: 1280px;
  background: #F9F9F9;
  margin-top: 20px;
  border-top: 1px solid #CCCCCC;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.footer_content_t{
  height: 70px;
  padding: 0 10px;
}
.footer_content_b{
  height: 70px;
}
footer .footer-wrap{
  margin: 0 auto;
  /* max-width: 500px; */
  height: 100%;
}
footer .footer_content_t .footer_item {
  margin: auto 10px;
}
footer .footer_item{
  text-align: center;
  margin: auto 0;
}
footer .footer_content_b .footer_item p{
  font-size: 16px;
  color: #707070;
  font-weight: bold;
  margin:0;
}
footer .footer_item img{
  width: 32px;
  height: 32px;
}
footer .footer_content_b .footer_item .active{
  color: #0070CA;
  font-weight: bold;
}
footer .footer_item a{
  display: inline-block;
}

/* メッセージ入力フォーム */
footer .footer_content_t input {
  padding-left: 10px;
  margin: auto 0;
  width: 100%;
  border: 1px solid #BDBDBD;
  border-radius: 5px;
  height: 45px;
}
footer .footer_content_t input:focus{
  border-color: #71a2ff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 83 240 / 25%);
}
@media screen and (max-width: 768px){
  footer .footer_content_b .footer_item p {
    font-size: 12px;
  }
}