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 / _support.scss

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

69 lines 968 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2
3 // RSS Feed are the support questions on the page.
4 .rss-feed {
5 overflow: hidden;
6 clear: both;
7 margin-bottom: 20px;
8
9 li {
10 width: 32%;
11 margin-right: 2%;
12 float: left;
13 margin-bottom: 2%;
14
15 &:nth-child(3n) {
16 margin-right: 0;
17 }
18
19 a {
20 min-height: 110px;
21 max-height: 110px;
22 overflow: hidden;
23 background: #fff;
24 width: 100%;
25 display: block;
26 padding: 10px;
27 box-sizing: border-box;
28 border: 1px solid #bbb;
29 //min-height: 100px;
30 text-decoration: none;
31 transition: all 200ms;
32 border-radius: 2px;
33 &:hover {
34 background: #f9f9f9;
35 span {
36 color: #0074a2;
37 }
38 }
39 span {
40 color: #2ea2cc;
41 font-weight: bold;
42 font-size: 1.2em;
43 line-height: 1.5em;
44 }
45 }
46 }
47 }
48
49
50 .system_info {
51 width: 90%;
52 background-color: #fff;
53 border: 1px solid #000;
54 padding: 15px;
55 .info {
56 margin: 5px 0;
57
58 label {
59 width: 250px;
60 display: inline-block;
61 clear: both;
62 }
63
64 }
65
66 }
67
68
69