Dashboard sipadu mbip
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_note.scss 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /** =====================
  2. Note css start
  3. ========================== **/
  4. .note-card {
  5. padding-top: 0;
  6. padding-bottom: 0;
  7. .note-box-aside {
  8. border-right: 1px solid #ddd;
  9. .row {
  10. padding: 20px 0;
  11. display: flex;
  12. align-items: center;
  13. }
  14. }
  15. .Note-header {
  16. padding: 20px 0;
  17. }
  18. .note-write {
  19. position: relative;
  20. &:before {
  21. content: '';
  22. position: absolute;
  23. width: 0px;
  24. top: 0;
  25. left: 32px;
  26. bottom: 0;
  27. border-left: 1px solid $primary-color;;
  28. }
  29. &:after {
  30. content: '';
  31. position: absolute;
  32. width: 0px;
  33. top: 0;
  34. left: 34px;
  35. bottom: 0;
  36. border-left: 1px solid $primary-color;
  37. }
  38. background:-webkit-linear-gradient(top, lighten($primary-color,15%) 0%, lighten($primary-color,30%) 5%) 0 0;
  39. background-size:100% 35px;
  40. }
  41. #Note-pad {
  42. border: none;
  43. resize: none;
  44. background: transparent;
  45. padding:0px 20px 0 50px;
  46. line-height: 35px;
  47. }
  48. .Note-created__on {
  49. display: block;
  50. }
  51. }
  52. /**====== Note css end ======**/