PluginProbe
MaxButtons – Create buttons / 6.23
MaxButtons – Create buttons v6.23
6.23 6.24 6.25 6.26 6.26.1 6.27 6.28 6.3 6.4 6.5 6.6 6.7 6.8 6.9 7.0 7.1 7.1.1 7.1.2 7.1.3 7.10 7.11 7.13 7.13.1 7.13.2 7.13.3 All 100 releases
maxbuttons / assets / scss / _general.scss

_general.scss in MaxButtons – Create buttons 6.23, at assets/scss/_general.scss

109 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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
14
15 }
16
17 .main {
18 position: relative;
19 z-index: 500;
20 margin-top: 15px;
21 width: 72%;
22 float: left;
23 }
24
25 .mb-message {
26 @extend .message;
27
28 &.error {
29
30 font-weight: 700;
31 }
32 &.shortcode {
33 border: solid 1px #e6db55;
34 background-color: #ffffe0;
35
36 }
37 &.mb-notice {
38 @extend .shortcode;
39 }
40 }
41
42
43 // modelled after WP
44 .button-bar {
45 margin: 15px 0;
46 padding: 10px;
47 background: #fbfbfb none repeat scroll 0 0;
48 border: 1px solid #e5e5e5;
49 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
50 box-shadow: 0 1px 1px rgba(0,0,0,0.04);
51 min-height: 28px;
52 }
53 h1 > span {
54 vertical-align: top;
55 float: left;
56 @include bp(1024)
57 {
58 float:none;
59 }
60 }
61
62 // the logo in the header section
63 .logo {
64 // margin-left: 70px;
65 font-weight: 400;
66 /// font-style: italic;
67 font-size: 13px;
68 // display: inline-block;
69 //height: 60px;
70 overflow: hidden;
71 text-align: center;
72
73 @include bp(1024)
74 {
75 text-align: left;
76 margin-top: 15px;
77 }
78
79 img {
80 vertical-align: middle;
81 padding-left: 5px;
82 padding-right: 5px;
83 }
84 .fb-like {
85 margin-top: 5px;
86 height: 20px;
87 padding: 0;
88 margin-left: 180px;
89 overflow: hidden;
90
91 span { vertical-align: top !important; }
92 }
93
94
95
96
97 }
98
99 // backward compatible for the placing of admin notices before version 4.3 - searches for h2
100 .dummy-heading { display: none; }
101
102
103 @media screen and (max-width: 960px) {
104 .main { width: 100%; }
105
106
107 }
108
109