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.
44 lines
1002 B
44 lines
1002 B
/*******************************
|
|
Page Segments
|
|
*******************************/
|
|
|
|
.ui.segment {
|
|
background-color: #FFFFFF;
|
|
|
|
-webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
|
|
-moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
|
|
|
|
padding: 15px;
|
|
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
border-radius: 5px 5px 5px 5px;
|
|
|
|
min-height: 50px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ui.segment.attached {
|
|
margin: -1px 0px;
|
|
-moz-border-radius: 0px;
|
|
-webkit-border-radius: 0px;
|
|
border-radius: 0px;
|
|
}
|
|
.ui.top.attached.segment {
|
|
margin-bottom: -1px;
|
|
-moz-border-radius: 5px 5px 0px 0px;
|
|
-webkit-border-radius: 5px 5px 0px 0px;
|
|
border-radius: 5px 5px 0px 0px;
|
|
}
|
|
.ui.segment.bottom.attached {
|
|
margin-top: -1px;
|
|
-moz-border-radius: 0px 0px 5px 5px;
|
|
-webkit-border-radius: 0px 0px 5px 5px;
|
|
border-radius: 0px 0px 5px 5px;
|
|
}
|
|
|
|
/* Common Views */
|
|
.ui.segment .list li {
|
|
padding: 10px 25px;
|
|
}
|