stylesheets/_iasd-widgets.scss in iasd-bootstrap-sass-1.0.5 vs stylesheets/_iasd-widgets.scss in iasd-bootstrap-sass-1.1.0
- old
+ new
@@ -2238,6 +2238,88 @@
margin-top: 15px !important;
}
}
}
}
+}
+
+
+// Search Box
+
+.iasd-widget-search{
+ form{
+ margin: 35px 0;
+ position: relative;
+ input[type=text]{
+ padding-right: 40px;
+ }
+ .btn-default{
+ background: none;
+ border: none;
+ color: $theme-main-color;
+ position: absolute;
+ right: 0;
+ text-indent: -5000px;
+ top: 0;
+ width: 32px;
+ &:after{
+ content:'\f002';
+ display: block;
+ font-family: FontAwesome;
+ font-size: 13px;
+ height: 32px;
+ line-height: 32px;
+ position: absolute;
+ right: 0;
+ text-align: center;
+ text-indent: 0;
+ top: 0;
+ width: 32px;
+ }
+ &:hover, &:active{
+ &:after{
+ color: lighten($theme-main-color, 10%);
+ }
+ }
+ }
+ }
+}
+
+// Simple list
+
+.iasd-widget-list{
+ ul{
+ margin: 35px 0 0 0;
+ padding: 0 0 0 15px;
+ li{
+ color: $theme-main-color;
+ margin: 0;
+ padding: 0 0 0 5px;
+ & + li{
+ margin-top: 10px;
+ }
+ a{
+ color: $theme-main-color !important;
+ font-weight: 700;
+ &:hover, &:active{
+ color: lighten($theme-main-color, 10%) !important;
+ }
+ }
+ }
+ }
+}
+
+// Text with title
+
+.iasd-widget-text_title, .iasd-contact-info{
+ .well{
+ @include box-shadow(none);
+ font-size: 13px;
+ margin: 35px 0 0 0;
+ line-height: 20px;
+ padding: 25px 30px 20px !important;
+ p{
+ font-size: 13px;
+ line-height: 20px !important;
+ }
+ }
}
\ No newline at end of file