collaboration.css 7.94 KB
Newer Older
藤川諒 committed
1 2
@charset "UTF-8";
/**************************** header *************************/
Kim Peace committed
3
#collabo_header {
藤川諒 committed
4 5 6 7 8 9
  max-width: 1280px;
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 10px;
Kim Peace committed
10
  background: #1d1d1d;
藤川諒 committed
11 12
  z-index: 10;
}
Kim Peace committed
13
.collabo_nav_l {
藤川諒 committed
14 15
  color: #fff;
}
Kim Peace committed
16
.collabo_nav_r .img_wrap {
藤川諒 committed
17 18 19
  width: 45px;
  height: 45px;
}
Kim Peace committed
20
.collabo_nav_r .img_wrap img {
藤川諒 committed
21 22 23 24 25
  width: 100%;
  height: 100%;
}

/**************************** main *************************/
Kim Peace committed
26 27 28 29 30
#collabo_main {
  height: calc(100vh - 180px);
  position: relative;
  margin-bottom: 120px;
}
藤川諒 committed
31 32
#collabo_main .user_list_wrap,
#collabo_main .document_wrap,
Kim Peace committed
33 34 35 36 37 38 39 40 41 42 43
#overlay_user_list .user_list_wrap {
  height: 100%;
  background: #525252;
}
#collabo_main .user_list,
#overlay_user_list .user_list {
  background: #525252;
  padding-bottom: 120px;
}
#collabo_main .user_list .img_wrap,
#overlay_user_list .user_list .img_wrap {
藤川諒 committed
44 45 46 47 48 49
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 5px auto;
  height: 100%;
Kim Peace committed
50 51 52 53 54 55 56 57 58 59 60 61
}
.user_item .name {
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  color: #fff;
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
藤川諒 committed
62 63
}
#collabo_main .user_list .img_wrap img,
Kim Peace committed
64
#overlay_user_list .user_list .img_wrap img {
藤川諒 committed
65 66 67
  width: 80px;
  height: 80px;
  border-radius: 50%;
Kim Peace committed
68 69 70 71 72 73 74 75
}
.noscroll {
  overflow: hidden;
  position: fixed;
}
.none {
  display: none;
}
藤川諒 committed
76

Kim Peace committed
77 78
#collabo_main .user_item.host:before,
#overlay_user_list .user_item.host:before {
藤川諒 committed
79 80 81 82 83 84 85 86 87 88
  content: "";
  top: 0;
  right: 0;
  background: url("../icon/icon_host_tag.png");
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
}
.user_item {
Kim Peace committed
89 90 91 92 93 94 95 96 97
  width: calc(50% - 5px);
  position: relative;
  text-align: center;
  border: 1px solid white;
  border-radius: 5px;
  margin: 5px auto;
  height: calc(100vh / 3);
  line-height: calc(100vh / 3);
  overflow: hidden;
藤川諒 committed
98 99
}
.user_item a {
Kim Peace committed
100 101
  display: block;
  height: 100%;
藤川諒 committed
102 103 104
}

/**************************** overlay *************************/
Kim Peace committed
105
.btn {
藤川諒 committed
106 107 108 109 110 111 112
  background-color: transparent;
  border: none;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
}
Kim Peace committed
113
.btn.menu_btn {
藤川諒 committed
114 115
  background-image: url("../icon/icon_collabo_menu.png");
}
Kim Peace committed
116
.btn.user_btn {
藤川諒 committed
117 118
  background-image: url("../icon/icon_member_white.png");
}
Kim Peace committed
119
.btn.add_user_btn {
藤川諒 committed
120 121
  background-image: url("../icon/icon_add_member_white.png");
}
Kim Peace committed
122 123 124 125
.btn.menu_btn.hide,
.btn.add_user_btn.hide,
.btn.user_btn.hide {
  transition: 0.3s;
藤川諒 committed
126 127 128
  background-image: url("../icon/icon_close.png");
}
.overlay {
Kim Peace committed
129
  transition: 0.7s;
藤川諒 committed
130 131 132 133 134 135 136
  position: absolute;
  top: 60px;
  width: 100%;
  right: -100%;
  background: #525252;
  height: 100vh;
}
Kim Peace committed
137 138 139
.fixed {
  position: fixed;
}
藤川諒 committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
.overlay.slidein {
  top: 60px;
  right: 0;
  left: 0;
  background: #525252;
  height: 100vh;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* メニュー */
#overlay_menu .menu_wrap .menu .item {
  width: 50%;
  padding: 10px 0;
}
#overlay_menu .menu_wrap .menu {
  width: 220px;
}
Kim Peace committed
160
#overlay_menu .menu_wrap .menu .item a {
藤川諒 committed
161 162 163 164 165 166 167
  text-align: center;
  color: #fff;
}
#overlay_menu .img_wrap {
  width: 80px;
  height: 80px;
  line-height: 80px;
Kim Peace committed
168
  background: #0070ca;
藤川諒 committed
169 170 171 172
  border-radius: 8px;
  margin: 5px;
}
#overlay_menu .overlay_menu_wrap {
Kim Peace committed
173
  height: calc(100vh - 180px);
藤川諒 committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187
}

/* ユーザー追加 */
#overlay_add_user_list {
  position: fixed;
  z-index: 100;
  top: 0;
  background: white;
  height: 100%;
  width: 100%;
  max-width: 1280px;
}
#add_user_list .user_list li {
  list-style: none;
Kim Peace committed
188
  border-bottom: 1px solid #e2e8f0;
藤川諒 committed
189 190 191
  position: relative;
}
#add_user_list .user_list li:first-child {
Kim Peace committed
192
  border-top: 1px solid #e2e8f0;
藤川諒 committed
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
}
#add_user_list .chat_item_ttl {
  font-weight: bold;
}

#add_user_list .user_item {
  height: 90px;
}
#add_user_list .user_item_l_chk {
  height: 100%;
  display: table;
  margin-right: 20px;
  width: 50px;
}
#add_user_list .checkbox-parts {
  position: relative;
}
#add_user_list .checkbox {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
#add_user_list .checkbox-input {
  display: none;
}
#add_user_list .checkbox-parts::before {
  display: block;
  position: absolute;
Kim Peace committed
221
  border: 2px solid #0070ca;
藤川諒 committed
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#add_user_list .checkbox-input:checked + .checkbox-parts::after {
  display: block;
  position: absolute;
  content: "\f107";
  font: 40px FontAwesome;
  color: white;
  width: 40px;
  height: 40px;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
Kim Peace committed
245
  background: #0070ca;
藤川諒 committed
246 247 248 249 250
  border-radius: 50%;
}
#add_user_list .user_item_l {
  margin: 0 15px;
}
251
#add_user_list .chat_item_l .thumbnail {
藤川諒 committed
252 253 254 255 256 257
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
258
#add_user_list .user_item_l .thumbnail img {
藤川諒 committed
259 260 261 262 263 264 265 266 267
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
#overlay_add_user_list a {
  color: #323743;
}

/**************************** zoomin zoomout *************************/
Kim Peace committed
268
.s_ac .img_wrap {
藤川諒 committed
269 270 271 272 273 274 275
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin: 5px;
  line-height: 36px;
  text-align: center;
}
Kim Peace committed
276
.s_ac .img_wrap img {
藤川諒 committed
277 278 279 280 281 282 283
  width: 35px;
  height: 35px;
}
.s_ac {
  position: fixed;
  top: 60px;
  z-index: 2;
Kim Peace committed
284
  height: calc(100% - 180px);
藤川諒 committed
285 286 287 288 289 290 291 292 293 294 295 296 297 298
}
.s_ac_c {
  margin: auto 0;
}

/**************************** modal *************************/
#captyaModal .modal-header span,
#changeHostModal .modal-header span,
#hostRequestModal .modal-header span {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
299

藤川諒 committed
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
#captyaModal .modal-body,
#changeHostModal .modal-body,
#hostRequestModal .modal-body {
  text-align: center;
}
#captyaModal .modal-footer button {
  width: 30%;
  height: 60px;
  border-radius: 10px;
}
#changeHostModal .modal-footer button,
#hostRequestModal .modal-footer button {
  width: 50%;
  height: 50px;
  border-radius: 10px;
}

/**************************** footer *************************/
Kim Peace committed
318
#collabo_footer {
藤川諒 committed
319
  max-width: 1280px;
Kim Peace committed
320
  background: #1d1d1d;
藤川諒 committed
321 322 323 324 325
  height: 120px;
  margin-top: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
Kim Peace committed
326
  border: none;
藤川諒 committed
327 328
  z-index: 10;
}
Kim Peace committed
329
#collabo_footer .footer-wrap {
藤川諒 committed
330 331 332 333
  margin: 0 auto;
  height: 100%;
  max-width: 300px;
}
Kim Peace committed
334
#collabo_footer .footer_item a {
藤川諒 committed
335 336
  display: inline-block;
}
Kim Peace committed
337
#collabo_footer .img_wrap {
藤川諒 committed
338 339 340 341 342 343 344 345
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 55px;
}

/**************************** footer-menu *************************/
#collabo_footer_menu {
Kim Peace committed
346
  transition: 0.7s;
藤川諒 committed
347 348 349 350 351 352 353 354 355
  max-width: 1280px;
  height: 70px;
  position: fixed;
  width: 100%;
  margin: 0;
  border: none;
  bottom: 120px;
  z-index: 3;
}
Kim Peace committed
356 357
#collabo_footer_menu.hide {
  transition: 0.7s;
藤川諒 committed
358
}
Kim Peace committed
359
#collabo_footer_menu .footer_menu_btn {
藤川諒 committed
360
  background-color: white;
Kim Peace committed
361
  border: 1px solid #7a7a7a;
藤川諒 committed
362 363 364 365 366 367 368 369 370
  border-radius: 5px 5px 0 0;
  width: 80px;
  height: 40px;
  background-image: url(../icon/icon_arrow_down.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 70px;
}
Kim Peace committed
371
#collabo_footer_menu .footer_menu_btn.hide {
藤川諒 committed
372 373 374
  background-image: url(../icon/icon_arrow_up.png);
}
#collabo_footer_menu .footer_menu-wrap {
Kim Peace committed
375 376
  background: #1d1d1d;
  height: 40px;
藤川諒 committed
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
}

#collabo_footer_menu .footer_menu_item .img_wrap {
  width: 48px;
  height: 48px;
  line-height: 45px;
  border-radius: 8px;
  text-align: center;
  margin: 0 5px;
}
#collabo_footer_menu .footer_menu_item .img_wrap.wide {
  width: 140px;
  height: 48px;
  line-height: 45px;
  border-radius: 8px;
  text-align: center;
  margin: 0 5px;
  color: #fff;
}

Kim Peace committed
397 398
@media screen and (max-width: 768px) {
  #add_user_list .user_item_ttl {
藤川諒 committed
399 400
    font-size: 16px;
  }
Kim Peace committed
401
  #add_user_list .user_item_ttl {
藤川諒 committed
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
    font-size: 16px;
  }
  #add_user_list .user_item_m {
    font-size: 14px;
  }
  #add_user_list .user_item {
    height: 70px;
  }

  /* check radio */
  #add_user_list .checkbox-parts::before {
    width: 30px;
    height: 30px;
  }
  #add_user_list .checkbox-input:checked + .checkbox-parts::after {
    font: 30px FontAwesome;
    width: 30px;
    height: 30px;
  }
  #add_user_list .user_item_l_chk {
    margin-right: 15px;
    width: 30px;
  }
}