archive.css 2.54 KB
Newer Older
藤川諒 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
@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 {
藤川諒 committed
14 15
  width: 30px;
  height: 30px;
藤川諒 committed
16 17 18
}
.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
.bg_blue {
藤川諒 committed
30
  background: #4896d6;
Kim Peace committed
31 32 33 34 35 36 37 38 39 40
}
.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
.archive_date span {
  color: #323743;
  font-size: 14px;
}
.archive_name span {
  color: #323743;
  font-size: 16px;
藤川諒 committed
55
  font-weight: bold;
Kim Peace committed
56 57
}
.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
.archive_detail .ttl{
  font-size: 18px;
  font-weight: bold;
藤川諒 committed
82 83
  background: #0070ca2b;
  padding: 10px;
藤川諒 committed
84
}
Kim Peace committed
85 86 87 88
.archive_detail .item {
  margin-bottom: 20px;
}
.archive_detail .archive_detail_desc img {
藤川諒 committed
89 90 91 92
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
Kim Peace committed
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 {
藤川諒 committed
102
  margin: 20px;
Kim Peace committed
103
}
藤川諒 committed
104
.archive_detail .archive_detail_desc .archive_detail_user_list span,
Kim Peace committed
105
.archive_detail .archive_detail_desc .archive_detail_sv_user span {
藤川諒 committed
106 107 108 109 110 111 112
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90px;
}

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

#joinChatRoom img {
  width: 24px;
  height: 24px;
}
126 127 128 129 130 131 132 133 134 135

.archive_chat_room {
  display: inline-block;
  vertical-align: middle;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

藤川諒 committed
136 137 138 139
@media screen and (max-width: 768px){
  .archive_name{
    font-size: 14px;
  }
Kim Peace committed
140
  .archive_detail .ttl {
藤川諒 committed
141 142 143 144 145 146
    font-size: 16px;
  }
  .archive_detail_desc span {
    font-size: 14px;
  }
}