dashboard-banner.css
220 lines
| 1 | @font-face { |
| 2 | font-family: 'Segoe UI Bold'; |
| 3 | src: url('../font/Segoe UI Bold.ttf') format('truetype'); |
| 4 | font-style: normal; |
| 5 | font-stretch: normal; |
| 6 | font-display: swap; |
| 7 | } |
| 8 | @font-face { |
| 9 | font-family: 'Segoe UI'; |
| 10 | src: url('../font/Segoe UI.ttf') format('truetype'); |
| 11 | font-style: normal; |
| 12 | font-stretch: normal; |
| 13 | font-display: swap; |
| 14 | } |
| 15 | @font-face { |
| 16 | font-family: 'Segoe UI Semibold'; |
| 17 | src: url('../font/Segoe UI Semibold.ttf') format('truetype'); |
| 18 | } |
| 19 | .notice.is-dismissible.fleximp{ |
| 20 | background-size: 100% 100%; |
| 21 | padding: 0; |
| 22 | border: none; |
| 23 | } |
| 24 | |
| 25 | .fleximp-notice-banner-wrap{ |
| 26 | display: flex; |
| 27 | justify-content: space-around; |
| 28 | align-items: center; |
| 29 | width: 100%; |
| 30 | margin: 0 auto; |
| 31 | } |
| 32 | .fleximp-main-head{ |
| 33 | font: normal normal bold 40px/57px Roboto !important; |
| 34 | color: #fff; |
| 35 | text-align: left; |
| 36 | margin: 0 !important; |
| 37 | padding: 0 !important; |
| 38 | line-height: 25px !important; |
| 39 | } |
| 40 | .fleximp-notice-btn{ |
| 41 | display: flex; |
| 42 | justify-content: left; |
| 43 | align-items: center; |
| 44 | gap: 10px; |
| 45 | } |
| 46 | .fleximp-btn{ |
| 47 | background: #000000; |
| 48 | border: 1px solid transparent; |
| 49 | padding: 7px 30px; |
| 50 | font: 16px / 23px Segoe UI Semibold !important; |
| 51 | letter-spacing: 0px; |
| 52 | color: #FFFFFF !important; |
| 53 | text-decoration: none !important; |
| 54 | border-radius: 7px; |
| 55 | display: inline-block; |
| 56 | text-align: center; |
| 57 | } |
| 58 | .fleximp-btn:hover{ |
| 59 | border: 1px solid #fff; |
| 60 | background: unset; |
| 61 | } |
| 62 | .fleximp-sub-head{ |
| 63 | font: normal normal normal 18px/22px Roboto !important; |
| 64 | letter-spacing: 0px; |
| 65 | color: #FFFFFF !important; |
| 66 | margin: 10px 0 8px 0 !important; |
| 67 | text-align: left; |
| 68 | } |
| 69 | .fleximp-notice-banner-wrap .fleximp-notice-coupon-btn { |
| 70 | text-align: center; |
| 71 | font: normal normal normal 16px/19px Roboto; |
| 72 | letter-spacing: 0px; |
| 73 | color: #000000; |
| 74 | background-color: #fff; |
| 75 | border-radius: 7px; |
| 76 | border: 1px solid #000; |
| 77 | width: fit-content; |
| 78 | padding: 8px 30px; |
| 79 | cursor: pointer; |
| 80 | } |
| 81 | .fleximp-notice-coupon-btn span { |
| 82 | display: none; |
| 83 | } |
| 84 | .fleximp .notice-icon { |
| 85 | background-color: #FFFFFF; |
| 86 | border-radius: 17px; |
| 87 | width: fit-content; |
| 88 | padding: 15px; |
| 89 | } |
| 90 | .fleximp .notice-info { |
| 91 | display: flex; |
| 92 | align-items: center; |
| 93 | justify-content: center; |
| 94 | background-size: 100% 100%; |
| 95 | width: 100%; |
| 96 | } |
| 97 | .fleximp .notice-icon { |
| 98 | margin-left: 20px; |
| 99 | } |
| 100 | .fleximp .notice-icon img { |
| 101 | width: 110px !important; |
| 102 | height: 110px !important; |
| 103 | } |
| 104 | .fleximp-notice-banner-wrap .notice-buttons { |
| 105 | display: flex; |
| 106 | align-items: center; |
| 107 | gap: 10px; |
| 108 | } |
| 109 | .fleximp-notice-heading{ |
| 110 | display: flex; |
| 111 | flex-direction: column; |
| 112 | gap: 10px; |
| 113 | padding: 10px 0; |
| 114 | position: relative; |
| 115 | left: -50px; |
| 116 | } |
| 117 | .notice-dismiss { |
| 118 | background-color: #fff; |
| 119 | width: 20px; |
| 120 | height: 20px; |
| 121 | } |
| 122 | .notice-dismiss:before{ |
| 123 | font-size: 22px; |
| 124 | background: linear-gradient(270deg, #4E5DAA 0%, #9B76B5 100%); |
| 125 | -webkit-background-clip: text; |
| 126 | -webkit-text-fill-color: transparent; |
| 127 | background-clip: text; |
| 128 | } |
| 129 | .fleximp-btn:focus,.notice-dismiss:focus{ |
| 130 | box-shadow:unset !important |
| 131 | } |
| 132 | .notice-dismiss:active:before, .notice-dismiss:focus:before, .notice-dismiss:hover:before{ |
| 133 | color: #000; |
| 134 | } |
| 135 | |
| 136 | @media screen and (max-width:1750px) { |
| 137 | .fleximp-notice-heading { |
| 138 | position: static; |
| 139 | } |
| 140 | .fleximp-sub-head { |
| 141 | max-width: 570px; |
| 142 | } |
| 143 | .fleximp .notice-info { |
| 144 | background-size: cover; |
| 145 | } |
| 146 | } |
| 147 | @media screen and (max-width:1450px) { |
| 148 | .fleximp .notice-icon { |
| 149 | margin-right: 50px; |
| 150 | } |
| 151 | .fleximp-main-head { |
| 152 | font-size: 30px !important; |
| 153 | } |
| 154 | } |
| 155 | @media screen and (max-width:1024px) { |
| 156 | .notice-dismiss { |
| 157 | padding: 3px; |
| 158 | } |
| 159 | .fleximp-sub-head { |
| 160 | font: 17px / 24px Segoe UI !important; |
| 161 | } |
| 162 | .fleximp-left-img-wrap{ |
| 163 | width: 40%; |
| 164 | } |
| 165 | .fleximp-notice-heading{ |
| 166 | width: 60%; |
| 167 | } |
| 168 | .fleximp-left-img-wrap img{ |
| 169 | width: 100%; |
| 170 | } |
| 171 | .fleximp-main-head { |
| 172 | font: 25px / 32px Segoe UI Bold !important; |
| 173 | } |
| 174 | .fleximp-notice-banner-wrap{ |
| 175 | padding: 10px; |
| 176 | width: 100%; |
| 177 | } |
| 178 | } |
| 179 | @media screen and (max-width:767px) { |
| 180 | .fleximp-notice-banner-wrap, |
| 181 | .fleximp .notice-info{ |
| 182 | flex-direction: column; |
| 183 | width: 100%; |
| 184 | margin: auto; |
| 185 | } |
| 186 | .fleximp .notice-info { |
| 187 | padding: 10px 0; |
| 188 | } |
| 189 | .fleximp-notice-heading { |
| 190 | width: 90%; |
| 191 | margin: auto; |
| 192 | justify-content: center;align-items: center; |
| 193 | text-align: center; |
| 194 | } |
| 195 | .fleximp-sub-head { |
| 196 | text-align: center; |
| 197 | } |
| 198 | .fleximp-notice-banner-wrap .notice-buttons { |
| 199 | flex-wrap: wrap; |
| 200 | justify-content: center; |
| 201 | align-items: center; |
| 202 | } |
| 203 | .fleximp .notice-icon { |
| 204 | margin-right: 0px; |
| 205 | margin-left: 0px; |
| 206 | } |
| 207 | .fleximp-main-head { |
| 208 | text-align: center; |
| 209 | padding: 0px; |
| 210 | } |
| 211 | } |
| 212 | @media screen and (max-width:575px) { |
| 213 | .fleximp-notice-btn{ |
| 214 | display: block; |
| 215 | text-align: center; |
| 216 | } |
| 217 | .fleximp-btn{ |
| 218 | margin-bottom: 10px; |
| 219 | } |
| 220 | } |