notice.css
135 lines
| 1 | @font-face { |
| 2 | font-family: 'wpmudev-close-icon'; |
| 3 | src: url('../fonts/wpmudev-close-icon.eot?v4kr59'); |
| 4 | src: url('../fonts/wpmudev-close-icon.eot?v4kr59#iefix') format('embedded-opentype'), |
| 5 | url('../fonts/wpmudev-close-icon.woff2?v4kr59') format('woff2'), |
| 6 | url('../fonts/wpmudev-close-icon.ttf?v4kr59') format('truetype'), |
| 7 | url('../fonts/wpmudev-close-icon.woff?v4kr59') format('woff'), |
| 8 | url('../fonts/wpmudev-close-icon.svg?v4kr59#wpmudev-close-icon') format('svg'); |
| 9 | font-weight: normal; |
| 10 | font-style: normal; |
| 11 | } |
| 12 | |
| 13 | [class^="icon-"], [class*=" icon-"] { |
| 14 | /* use !important to prevent issues with browser extensions that change fonts */ |
| 15 | font-family: 'wpmudev-close-icon' !important; |
| 16 | speak: none; |
| 17 | font-style: normal; |
| 18 | font-weight: normal; |
| 19 | font-variant: normal; |
| 20 | text-transform: none; |
| 21 | line-height: 1; |
| 22 | |
| 23 | /* Better Font Rendering =========== */ |
| 24 | -webkit-font-smoothing: antialiased; |
| 25 | -moz-osx-font-smoothing: grayscale; |
| 26 | } |
| 27 | |
| 28 | .icon-close:before { |
| 29 | content: "\29"; |
| 30 | color: #AAAAAA; |
| 31 | |
| 32 | -webkit-transition: ease-in-out .2s; |
| 33 | transition: ease-in-out .2s; |
| 34 | } |
| 35 | |
| 36 | .wpmudev-recommended-plugins { |
| 37 | position: relative; |
| 38 | border-radius: 4px; |
| 39 | background-color: #FFFFFF; |
| 40 | padding: 25px 30px 30px; |
| 41 | -webkit-box-shadow: 0 2px 0 #E6E6E6; |
| 42 | box-shadow: 0 2px 0 #E6E6E6; |
| 43 | margin-bottom: 30px; |
| 44 | -webkit-transition: ease-in-out .2s; |
| 45 | transition: ease-in-out .2s; |
| 46 | } |
| 47 | |
| 48 | |
| 49 | .wpmudev-recommended-plugins .wpmudev-recommended-plugins-dismiss { |
| 50 | position: absolute; |
| 51 | top: 20px; |
| 52 | right: 20px; |
| 53 | } |
| 54 | |
| 55 | .wpmudev-recommended-plugins .wpmudev-recommended-plugins-dismiss a { |
| 56 | display: flex; |
| 57 | width: 30px; |
| 58 | height: 30px; |
| 59 | justify-content: center; |
| 60 | align-items: center; |
| 61 | } |
| 62 | |
| 63 | .wpmudev-recommended-plugins .wpmudev-recommended-plugins-dismiss:hover .icon-close:before { |
| 64 | color: #888888; |
| 65 | } |
| 66 | div.wpmudev-recommended-plugins p.wpmudev-notice-status { |
| 67 | font-size: 13px; |
| 68 | color: #888888; |
| 69 | margin-bottom: 25px !important; |
| 70 | line-height: 22px; |
| 71 | } |
| 72 | |
| 73 | .wpmudev-recommended-plugins h3.wpmudev-plugin-name { |
| 74 | font-family: "Roboto", Arial, sans-serif; |
| 75 | font-size: 13px; |
| 76 | line-height: 22px; |
| 77 | margin-bottom: 2px; |
| 78 | -webkit-transition: ease-in-out .2s; |
| 79 | transition: ease-in-out .2s; |
| 80 | } |
| 81 | |
| 82 | .wpmudev-recommended-plugins p.wpmudev-plugin-description { |
| 83 | font-family: "Roboto", Arial, sans-serif; |
| 84 | color: #888888; |
| 85 | font-size: 13px; |
| 86 | letter-spacing: -0.25px; |
| 87 | line-height: 18px; |
| 88 | margin: 0; |
| 89 | } |
| 90 | |
| 91 | |
| 92 | .wpmudev-recommended-plugin-blocks { |
| 93 | display: flex; |
| 94 | } |
| 95 | .wpmudev-recommended-plugin-block { |
| 96 | width: 50%; |
| 97 | min-height: 60px; |
| 98 | } |
| 99 | |
| 100 | .wpmudev-recommended-plugin-block-image { |
| 101 | position: absolute; |
| 102 | } |
| 103 | .wpmudev-recommended-plugin-block-detail { |
| 104 | margin: 0 15px 0 75px; |
| 105 | } |
| 106 | |
| 107 | .wpmudev-recommended-plugin-block-detail { |
| 108 | vertical-align: middle; |
| 109 | } |
| 110 | .wpmudev-recommended-plugin-block-image img { |
| 111 | border-radius: 4px; |
| 112 | width: 60px; |
| 113 | -webkit-transition: ease-in-out .2s; |
| 114 | transition: ease-in-out .2s; |
| 115 | } |
| 116 | .wpmudev-recommended-plugin-block:hover img { |
| 117 | opacity: .8; |
| 118 | } |
| 119 | .wpmudev-recommended-plugin-block:hover h3.wpmudev-plugin-name { |
| 120 | color: #666666; |
| 121 | } |
| 122 | |
| 123 | |
| 124 | /* Don't display the notice on screens smaller than 782px */ |
| 125 | @media only screen and (max-width: 782px) { |
| 126 | .wpmudev-recommended-plugins { |
| 127 | display: none; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | /* Color accessible close icon */ |
| 132 | .sui-wrap.sui-color-accessible .wpmudev-recommended-plugins .wpmudev-recommended-plugins-dismiss .icon-close:before { |
| 133 | color: #000000; |
| 134 | } |
| 135 |