| 1 |
|
| 2 |
/* Base element - do not use this in layout since this conflict with other plugins. |
| 3 |
|
| 4 |
*/ |
| 5 |
.message { |
| 6 |
border: solid 1px #e6db55; |
| 7 |
border-radius: 3px; |
| 8 |
-moz-border-radius: 3px; |
| 9 |
-webkit-border-radius: 3px; |
| 10 |
padding: 10px; |
| 11 |
margin: 10px 0px 20px 0px; |
| 12 |
clear: both; |
| 13 |
background: #fff; |
| 14 |
|
| 15 |
|
| 16 |
} |
| 17 |
|
| 18 |
.main { |
| 19 |
position: relative; |
| 20 |
z-index: 500; |
| 21 |
margin-top: 15px; |
| 22 |
width: 72%; |
| 23 |
float: left; |
| 24 |
} |
| 25 |
|
| 26 |
.mb-message { |
| 27 |
@extend .message; |
| 28 |
|
| 29 |
&.error { |
| 30 |
|
| 31 |
font-weight: 700; |
| 32 |
} |
| 33 |
&.shortcode { |
| 34 |
border: solid 1px #e6db55; |
| 35 |
background-color: #ffffe0; |
| 36 |
|
| 37 |
} |
| 38 |
&.warning { border-left: 4px solid #ffba00; } |
| 39 |
&.error { border-left: 4px solid #ff0000; } |
| 40 |
|
| 41 |
&.mb-notice { |
| 42 |
@extend .shortcode; |
| 43 |
} |
| 44 |
} |
| 45 |
|
| 46 |
|
| 47 |
// modelled after WP |
| 48 |
.button-bar { |
| 49 |
margin: 15px 0; |
| 50 |
padding: 10px; |
| 51 |
background: #fbfbfb none repeat scroll 0 0; |
| 52 |
border: 1px solid #e5e5e5; |
| 53 |
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); |
| 54 |
box-shadow: 0 1px 1px rgba(0,0,0,0.04); |
| 55 |
min-height: 28px; |
| 56 |
} |
| 57 |
h1 > span { |
| 58 |
vertical-align: top; |
| 59 |
float: left; |
| 60 |
@include bp(1024) |
| 61 |
{ |
| 62 |
float:none; |
| 63 |
} |
| 64 |
} |
| 65 |
|
| 66 |
// the logo in the header section |
| 67 |
.logo { |
| 68 |
// margin-left: 70px; |
| 69 |
font-weight: 400; |
| 70 |
/// font-style: italic; |
| 71 |
font-size: 13px; |
| 72 |
// display: inline-block; |
| 73 |
//height: 60px; |
| 74 |
overflow: hidden; |
| 75 |
text-align: center; |
| 76 |
|
| 77 |
@include bp(1024) |
| 78 |
{ |
| 79 |
text-align: left; |
| 80 |
margin-top: 15px; |
| 81 |
} |
| 82 |
|
| 83 |
img { |
| 84 |
vertical-align: middle; |
| 85 |
padding-left: 5px; |
| 86 |
padding-right: 5px; |
| 87 |
} |
| 88 |
.fb-like { |
| 89 |
margin-top: 5px; |
| 90 |
height: 20px; |
| 91 |
padding: 0; |
| 92 |
margin-left: 180px; |
| 93 |
overflow: hidden; |
| 94 |
|
| 95 |
span { vertical-align: top !important; } |
| 96 |
} |
| 97 |
|
| 98 |
|
| 99 |
|
| 100 |
|
| 101 |
} |
| 102 |
|
| 103 |
// backward compatible for the placing of admin notices before version 4.3 - searches for h2 |
| 104 |
.dummy-heading { display: none; } |
| 105 |
|
| 106 |
|
| 107 |
@media screen and (max-width: 960px) { |
| 108 |
.main { width: 100%; } |
| 109 |
|
| 110 |
|
| 111 |
} |
| 112 |
|
| 113 |
|