```html
<div class="radius bordered shadow card">
- <img src="assets/img/generic/rectangle-1.jpg">
+ <img src="http://placehold.it/500x250">
<div class="card-divider">
Styled Card
</div>
#### Tables
```html
-<table class="rounded bordered shadow">
+<table class="radius bordered shadow">
<!-- My Table goes here -->
</table>
```
<div class="docs-code-live">
- <table class="rounded bordered shadow">
+ <table class="radius bordered shadow">
<thead>
<tr>
<th width="200">Table Header</th>
#### Images
```html
-<img src="" class="rounded">
-<img src="" class="rounded-circle">
+<img src="http://placehold.it/100x100" class="radius">
+<img src="http://placehold.it/100x100" class="circle">
```
<div class="docs-code-live margin-bottom-1">
- <img src="http://placehold.it/100x100" class="rounded margin-right-1">
- <img src="http://placehold.it/100x100" class="rounded-circle">
+ <img src="http://placehold.it/100x100" class="radius margin-right-1">
+ <img src="http://placehold.it/100x100" class="circle">
</div>
---
/// Height of a separator.
/// @type Number
-$prototype-separator-height: rem-calc(2px) !default;
+$prototype-separator-height: rem-calc(2) !default;
/// Width of a separator.
/// @type Number
@if $align == right {
margin-right: 0 !important;
- }
+ }
}
}
.separator-center {
@include separator(center);
}
+
.separator-left {
@include separator(left);
}
+
.separator-right {
@include separator(right);
}