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.

67 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. overflow: hidden;
  15. }
  16. /* Label at the top of a segment */
  17. .ui.segment div:first-child {
  18. margin-top: 0px;
  19. }
  20. .ui.segment .attached.label:first-child + * {
  21. margin-top: 2em;
  22. }
  23. .ui.segment .bottom.attached.label:first-child + * {
  24. margin-top: 0em;
  25. }
  26. /* Compatability with Grid */
  27. .ui.fitted.elements .ui.segment.element:first-child {
  28. border-radius: 5px 0px 0px 5px;
  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. }