_support.scss in MaxButtons – Create buttons 6.23, at assets/scss/_support.scss
| 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 |