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.
116 lines
2.4 KiB
116 lines
2.4 KiB
/*
|
|
* # Dividers
|
|
* http://github.com/quirkyinc/semantic
|
|
*
|
|
*
|
|
* Copyright 2013 Contributors
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
* Released: April 17 2013
|
|
*/
|
|
/*******************************
|
|
Divider
|
|
*******************************/
|
|
.ui.divider {
|
|
margin: 1em 0em;
|
|
height: 1px;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-top: none;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.8);
|
|
}
|
|
.ui.divider .rule {
|
|
position: absolute;
|
|
top: 6px;
|
|
width: 45%;
|
|
height: 1px;
|
|
background-color: #ADADAD;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-bottom: 1px solid #F8F8F8;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.9);
|
|
}
|
|
.ui.divider .label {
|
|
display: block;
|
|
margin: 16px 0px 0px;
|
|
text-transform: none;
|
|
color: #333333;
|
|
}
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
.ui.vertical.divider,
|
|
.ui.horizontal.divider {
|
|
background-color: transparent;
|
|
position: relative;
|
|
margin: 1em 0em 1em;
|
|
font-size: 0.8em;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
|
|
color: #555555;
|
|
font-weight: bold;
|
|
}
|
|
.ui.divider .left.rule {
|
|
left: 0px;
|
|
}
|
|
.ui.divider .right.rule {
|
|
right: 0px;
|
|
}
|
|
/*--------------
|
|
Vertical
|
|
---------------*/
|
|
.vertical.ui.divider {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 50%;
|
|
height: 100%;
|
|
margin: 0px 0px 0px -50px;
|
|
min-width: 100px;
|
|
color: #555555;
|
|
font-weight: bold;
|
|
}
|
|
.vertical.ui.divider .rule {
|
|
position: absolute;
|
|
left: 50%;
|
|
width: 1px;
|
|
height: 45%;
|
|
background-color: #ADADAD;
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-right: 1px solid #F8F8F8;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.9);
|
|
}
|
|
.vertical.ui.divider .top.rule {
|
|
top: 0px;
|
|
}
|
|
.vertical.ui.divider .bottom.rule {
|
|
top: auto;
|
|
bottom: 0px;
|
|
}
|
|
.vertical.ui.divider .label {
|
|
position: relative;
|
|
top: 50%;
|
|
margin-top: -7px;
|
|
display: block;
|
|
width: 100%;
|
|
font-size: 16px;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
|
|
text-transform: none;
|
|
color: #333333;
|
|
}
|
|
/* Inverted Color Divider (Black BG) */
|
|
.ui.divider.inverted {
|
|
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.8);
|
|
color: #FFFFFF;
|
|
}
|
|
.ui.divider.inverted .rule {
|
|
border-color: #4A4A4A;
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
/*--------------
|
|
Clearing
|
|
---------------*/
|
|
.ui.clearing.divider {
|
|
clear: both;
|
|
}
|