settingBody.styl 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .flex
  2. display: -webkit-box
  3. display: -moz-box
  4. display: -webkit-flex
  5. display: -moz-flex
  6. display: -ms-flexbox
  7. display: flex
  8. .setting-content
  9. padding 30px
  10. color: #727479
  11. background: #dedede
  12. width 100%
  13. height 100%
  14. position: absolute;
  15. .content-title
  16. font-size 20px
  17. .content-body
  18. display flex
  19. padding-top 15px
  20. height 100%
  21. .side-menu
  22. background-color: #f7f7f7;
  23. border: 1px solid #f0f0f0;
  24. border-radius: 4px;
  25. width: 250px;
  26. box-shadow: inset -1px -1px 3px rgba(0,0,0,.05);
  27. ul
  28. li
  29. margin: 0.1rem 0.2rem;
  30. &.active
  31. background #fff
  32. box-shadow 0 1px 2px rgba(0,0,0,0.15);
  33. &:hover
  34. background #fff
  35. box-shadow 0 1px 2px rgba(0,0,0,0.15);
  36. a
  37. @extends .flex
  38. padding: 1rem 0 1rem 1rem
  39. width: 100% - 5rem
  40. span
  41. font-size: 13px
  42. .main-body
  43. padding: 0.1em 1em
  44. ul
  45. li
  46. padding: 0.5rem 0.5rem;
  47. a
  48. .is-checked
  49. border-bottom: 2px solid #2980b9;
  50. border-right: 2px solid #2980b9;
  51. span
  52. padding: 0 0.5rem
  53. .invite-people
  54. padding-left 20px;
  55. li
  56. min-width: 500px;
  57. ul.no-margin-bottom
  58. margin-bottom: 0;
  59. .bg-white
  60. a
  61. background #f7f7f7
  62. &.is-checked
  63. background #fff
  64. .option
  65. @extends .flex
  66. -webkit-border-radius: 3px;
  67. border-radius: 3px;
  68. background: #fff;
  69. text-decoration: none;
  70. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  71. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  72. margin-top: 5px;
  73. padding: 5px;
  74. .title
  75. font-weight 700;
  76. margin-bottom 0.5rem;
  77. .description
  78. margin-bottom 0.5rem;
  79. .bg-white
  80. background #f9fbfc;
  81. .form-control.has-error
  82. border-color: #a94442;
  83. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  84. li.has-error
  85. color #a94442
  86. .form-group
  87. .form-control
  88. border-color: #a94442;
  89. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);