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.
48 lines
1.0 KiB
48 lines
1.0 KiB
/*
|
|
* # Semantic Breadcrumb
|
|
* http://github.com/quirkyinc/semantic
|
|
*
|
|
*
|
|
* Copyright 2013 Contributors
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
* Released: April 17 2013
|
|
*/
|
|
/*******************************
|
|
Breadcrumb
|
|
*******************************/
|
|
.ui.breadcrumb {
|
|
margin: 1em 0em;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-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);
|
|
}
|
|
.ui.breadcrumb .divider {
|
|
opacity: 0.5;
|
|
display: inline-block;
|
|
margin: 0em 0.15em 0em;
|
|
font-size: 1em;
|
|
}
|
|
.ui.breadcrumb .section {
|
|
display: inline-block;
|
|
margin: 0em;
|
|
padding: 0em;
|
|
}
|
|
.ui.breadcrumb .active.section {
|
|
color: #777777;
|
|
}
|
|
/* Loose Coupling */
|
|
.ui.breadcrumb.segment {
|
|
padding: 0.5em 1em;
|
|
}
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
.ui.compact.breadcrumb {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|