settingBody.styl 2.2 KB

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