space-profile.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. @import "vars";
  2. @import "mixins";
  3. #space-profile {
  4. .modal-content {width: 680px; }
  5. }
  6. #item-content {
  7. position: relative;
  8. z-index: 10;
  9. }
  10. #item-cover {
  11. position: absolute;
  12. height: 100%;
  13. width: 100%;
  14. top: 0;
  15. left: 0;
  16. opacity: 0.1;
  17. background-size: cover;
  18. background-position: center;
  19. z-index: 0;
  20. }
  21. .item-head {
  22. .item-title {margin-bottom: 15px; }
  23. > span {display: block; }
  24. }
  25. .item-info {
  26. margin-bottom: 30px;
  27. }
  28. .item-stats {
  29. margin: 0;
  30. padding: 5px 0;
  31. margin-bottom: 20px;
  32. list-style: none;
  33. font-family: $main-font;
  34. font-size: 13px;
  35. li {
  36. display: inline-block;
  37. .icon {
  38. margin-right: 0px;
  39. }
  40. > span {
  41. margin-right: 10px;
  42. }
  43. }
  44. }
  45. .item-actions {}
  46. .item-categories,
  47. .item-tags {
  48. padding-top: 20px;
  49. margin-bottom: -20px;
  50. ul {
  51. margin: 0;
  52. padding: 0;
  53. list-style: none;
  54. font-size: 0;
  55. }
  56. li {
  57. display: inline-block;
  58. margin-right: 5px;
  59. margin-bottom: 10px;
  60. span {
  61. border: 2px solid rgba(255,255,255,0.1);
  62. display: inline-block;
  63. min-width: 32px;
  64. height: 32px;
  65. line-height: 28px;
  66. font-size: 11px;
  67. border-radius: 100px !important;
  68. padding: 0 10px;
  69. }
  70. }
  71. }