mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
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.
30 lines
580 B
30 lines
580 B
12 years ago
|
/* Chevrons
|
||
|
-------------------------------------------------- */
|
||
|
|
||
|
.chevron {
|
||
|
display: block;
|
||
|
height: 20px;
|
||
|
}
|
||
|
|
||
|
/* Base styles for both 1/2's of the chevron */
|
||
|
.chevron:before,
|
||
|
.chevron:after {
|
||
|
position: relative;
|
||
|
display: block;
|
||
11 years ago
|
width: 10px;
|
||
11 years ago
|
height: 3px;
|
||
|
background-color: #c7c7cc;
|
||
12 years ago
|
content: '';
|
||
|
}
|
||
|
|
||
|
/* Position and rotate respective 1/2's of the chevron */
|
||
|
.chevron:before {
|
||
11 years ago
|
top: 6px;
|
||
12 years ago
|
-webkit-transform: rotate(45deg);
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
.chevron:after {
|
||
11 years ago
|
top: 8px;
|
||
12 years ago
|
-webkit-transform: rotate(-45deg);
|
||
|
transform: rotate(-45deg);
|
||
|
}
|