Buttons in the footer
Browse files- assets/styles/scss/demo.scss +12 -2
- index.html +3 -3
assets/styles/scss/demo.scss
CHANGED
|
@@ -100,21 +100,31 @@ div#sholo-popover-item {
|
|
| 100 |
.sholo-popover-footer {
|
| 101 |
display: block;
|
| 102 |
clear: both;
|
|
|
|
|
|
|
| 103 |
a {
|
| 104 |
display: inline-block;
|
| 105 |
padding: 3px 10px;
|
| 106 |
border: 1px solid #d4d4d4;
|
| 107 |
text-decoration: none;
|
| 108 |
text-shadow: 1px 1px 0 #fff;
|
| 109 |
-
color: #
|
| 110 |
font: 11px/normal sans-serif;
|
| 111 |
cursor: pointer;
|
| 112 |
outline: 0;
|
| 113 |
-
background-color: #
|
| 114 |
border-radius: 2px;
|
| 115 |
zoom: 1;
|
| 116 |
margin: 10px 0 0;
|
| 117 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
}
|
| 119 |
|
| 120 |
.sholo-popover-title {
|
|
|
|
| 100 |
.sholo-popover-footer {
|
| 101 |
display: block;
|
| 102 |
clear: both;
|
| 103 |
+
margin-top: 5px;
|
| 104 |
+
|
| 105 |
a {
|
| 106 |
display: inline-block;
|
| 107 |
padding: 3px 10px;
|
| 108 |
border: 1px solid #d4d4d4;
|
| 109 |
text-decoration: none;
|
| 110 |
text-shadow: 1px 1px 0 #fff;
|
| 111 |
+
color: #2d2d2d;
|
| 112 |
font: 11px/normal sans-serif;
|
| 113 |
cursor: pointer;
|
| 114 |
outline: 0;
|
| 115 |
+
background-color: #f1f1f1;
|
| 116 |
border-radius: 2px;
|
| 117 |
zoom: 1;
|
| 118 |
margin: 10px 0 0;
|
| 119 |
}
|
| 120 |
+
|
| 121 |
+
.sholo-close {
|
| 122 |
+
float: left;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
.sholo-btn-group {
|
| 126 |
+
float: right;
|
| 127 |
+
}
|
| 128 |
}
|
| 129 |
|
| 130 |
.sholo-popover-title {
|
index.html
CHANGED
|
@@ -14,10 +14,10 @@
|
|
| 14 |
<div class="sholo-popover-title">Did you know?</div>
|
| 15 |
<div class="sholo-popover-description">You can make step by step introductions with sholo!</div>
|
| 16 |
<div class="sholo-popover-footer">
|
| 17 |
-
<a href="javascript:void(0)">Close</a>
|
| 18 |
<span class="sholo-btn-group">
|
| 19 |
-
<a href="javascript:void(0)"
|
| 20 |
-
<a href="javascript:void(0)">Next
|
| 21 |
</span>
|
| 22 |
</div>
|
| 23 |
</div>
|
|
|
|
| 14 |
<div class="sholo-popover-title">Did you know?</div>
|
| 15 |
<div class="sholo-popover-description">You can make step by step introductions with sholo!</div>
|
| 16 |
<div class="sholo-popover-footer">
|
| 17 |
+
<a href="javascript:void(0)" class="sholo-close">Close</a>
|
| 18 |
<span class="sholo-btn-group">
|
| 19 |
+
<a href="javascript:void(0)">← Previous</a>
|
| 20 |
+
<a href="javascript:void(0)">Next →</a>
|
| 21 |
</span>
|
| 22 |
</div>
|
| 23 |
</div>
|