archive.css 2.34 KB
Newer Older
藤川諒 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
@charset "UTF-8";
/**************************** archive *************************/
.archive_list ul {
  padding: 0;
}
.arhive_img .img_wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
}
.arhive_img img {
  width: 40px;
  height: 40px;
}
.archive_list ul li {
  list-style: none;
Kim Peace committed
19
  border-bottom: 1px solid #e2e8f0;
藤川諒 committed
20 21 22 23 24 25 26 27 28
  position: relative;
}
.archive_list ul li a {
  padding: 10px;
  color: #323743;
}
.archive_list ul li a:hover {
  background: aliceblue;
}
Kim Peace committed
29 30 31 32 33 34 35 36 37 38 39 40
.bg_blue {
  background: #0070ca;
}
.bg_green {
  background: #4dca00;
}
.bg_orange {
  background: #ca6d00;
}
.archive_list ul li:first-child {
  border-top: 1px solid #e2e8f0;
}
藤川諒 committed
41 42 43 44 45 46 47
.archive_desc {
  padding-left: 10px;
  position: relative;
  width: calc(100% - 100px);
  overflow: hidden;
  white-space: nowrap;
}
Kim Peace committed
48 49 50 51 52 53 54 55 56 57
.archive_date span {
  color: #323743;
  font-size: 14px;
}
.archive_name span {
  color: #323743;
  font-size: 16px;
  font-weight: 500;
}
.archive_name {
藤川諒 committed
58 59 60 61 62 63
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**************************** archive detail *************************/
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
.player {
  background-color: black;
  text-align : center;
}

.archive_player {
  width: auto;
  max-width: 100%;
  max-height: 50vh;
}

.archive_audio_player {
  width: 100%;
}

藤川諒 committed
79 80 81 82
.archive_detail .ttl{
  font-size: 18px;
  font-weight: bold;
}
Kim Peace committed
83 84 85 86
.archive_detail .item {
  margin-bottom: 20px;
}
.archive_detail .archive_detail_desc img {
藤川諒 committed
87 88 89 90
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
Kim Peace committed
91 92 93 94 95 96 97 98 99 100 101
.archive_detail .archive_detail_desc .archive_detail_user_list ul {
  padding-left: 0;
  overflow-x: scroll;
}
.archive_detail .archive_detail_desc .archive_detail_user_list ul li {
  list-style: none;
  margin: 0 5px;
}
.archive_detail_desc {
  margin: 0 10px;
}
藤川諒 committed
102
.archive_detail .archive_detail_desc .archive_detail_user_list span,
Kim Peace committed
103
.archive_detail .archive_detail_desc .archive_detail_sv_user span {
藤川諒 committed
104 105 106 107 108 109 110
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90px;
}

111 112 113 114 115 116 117 118 119 120 121 122 123
#joinChatRoom {
  -webkit-appearance: none;
  border: none;
  width: 24px;
  height: auto;
  padding: 0;
  background: white;
}

#joinChatRoom img {
  width: 24px;
  height: 24px;
}
藤川諒 committed
124 125 126 127
@media screen and (max-width: 768px){
  .archive_name{
    font-size: 14px;
  }
Kim Peace committed
128
  .archive_detail .ttl {
藤川諒 committed
129 130 131 132 133 134
    font-size: 16px;
  }
  .archive_detail_desc span {
    font-size: 14px;
  }
}