You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB

  1. /*******************************
  2. Page Segments
  3. *******************************/
  4. .ui.segment {
  5. position: relative;
  6. background-color: #FFFFFF;
  7. -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  8. -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  9. box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  10. padding: 1em;
  11. -webkit-border-radius: 5px 5px 5px 5px;
  12. -moz-border-radius: 5px 5px 5px 5px;
  13. border-radius: 5px 5px 5px 5px;
  14. -webkit-box-sizing: border-box;
  15. -moz-box-sizing: border-box;
  16. -ms-box-sizing: border-box;
  17. box-sizing: border-box;
  18. overflow: hidden;
  19. }
  20. /* Label at the top of a segment */
  21. .ui.segment div:first-child {
  22. margin-top: 0px;
  23. }
  24. .ui.segment .attached.label:first-child + * {
  25. margin-top: 2em;
  26. }
  27. .ui.segment .bottom.attached.label:first-child + * {
  28. margin-top: 0em;
  29. }
  30. .ui.segment.attached {
  31. top: -1px;
  32. bottom: -1px;
  33. -moz-border-radius: 0px;
  34. -webkit-border-radius: 0px;
  35. border-radius: 0px;
  36. -moz-box-shadow: 0px 0px 0px 1px #DDDDDD;
  37. -webkit-box-shadow: 0px 0px 0px 1px #DDDDDD;
  38. box-shadow: 0px 0px 0px 1px #DDDDDD;
  39. }
  40. .ui.top.attached.segment {
  41. top: 0px;
  42. bottom: -1px;
  43. -moz-border-radius: 5px 5px 0px 0px;
  44. -webkit-border-radius: 5px 5px 0px 0px;
  45. border-radius: 5px 5px 0px 0px;
  46. }
  47. .ui.segment.bottom.attached {
  48. top: -1px;
  49. bottom: 0px;
  50. -moz-border-radius: 0px 0px 5px 5px;
  51. -webkit-border-radius: 0px 0px 5px 5px;
  52. border-radius: 0px 0px 5px 5px;
  53. }
  54. /* Common Views */
  55. .ui.segment .list li {
  56. padding: 10px 25px;
  57. }