settingBody.styl 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. .admin-announcement,
  54. .invite-people
  55. padding-left 20px;
  56. li
  57. min-width: 500px;
  58. ul.no-margin-bottom
  59. margin-bottom: 0;
  60. .bg-white
  61. a
  62. background #f7f7f7
  63. &.is-checked
  64. background #fff
  65. .option
  66. @extends .flex
  67. -webkit-border-radius: 3px;
  68. border-radius: 3px;
  69. background: #fff;
  70. text-decoration: none;
  71. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  72. box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  73. margin-top: 5px;
  74. padding: 5px;
  75. .title
  76. font-weight 700;
  77. margin-bottom 0.5rem;
  78. .description
  79. margin-bottom 0.5rem;
  80. .bg-white
  81. background #f9fbfc;
  82. .form-control.has-error
  83. border-color: #a94442;
  84. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  85. li.has-error
  86. color #a94442
  87. .form-group
  88. .form-control
  89. border-color: #a94442;
  90. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);