Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | $font-size:20px; |
| 2 | $text-align:right; |
||
| 3 | |||
| 4 | // widget 1 |
||
| 5 | $widget1-icon-color: darken(#C9F0EE, 10%); |
||
| 6 | |||
| 7 | .mt-widget-1 { |
||
| 8 | border: 1px solid $general-panel-border-color; |
||
| 9 | text-align: center; |
||
| 10 | position: relative; |
||
| 11 | |||
| 12 | .mt-icon { |
||
| 13 | position: absolute; |
||
| 14 | right: 10px; |
||
| 15 | top: 10px; |
||
| 16 | margin: 7px; |
||
| 17 | font-size: 20px; |
||
| 18 | |||
| 19 | > a { |
||
| 20 | > i { |
||
| 21 | color: $widget1-icon-color; |
||
| 22 | } |
||
| 23 | |||
| 24 | &:hover { |
||
| 25 | > i { |
||
| 26 | color: darken($widget1-icon-color, 10%); |
||
| 27 | } |
||
| 28 | } |
||
| 29 | } |
||
| 30 | } |
||
| 31 | |||
| 32 | .mt-img { |
||
| 33 | display: inline-block; |
||
| 34 | border-radius: 50% !important; |
||
| 35 | border:4px solid $general-panel-border-color; |
||
| 36 | margin: 40px 0 30px 0; |
||
| 37 | |||
| 38 | > img { |
||
| 39 | border:1px solid trnsparent; |
||
| 40 | border-radius: 50% !important; |
||
| 41 | } |
||
| 42 | } |
||
| 43 | |||
| 44 | .mt-body { |
||
| 45 | |||
| 46 | .mt-username { |
||
| 47 | text-align: center; |
||
| 48 | margin: 5px 10px; |
||
| 49 | font-weight: 600; |
||
| 50 | font-size: 16px; |
||
| 51 | } |
||
| 52 | |||
| 53 | .mt-user-title { |
||
| 54 | text-align: center; |
||
| 55 | margin: 10px 10px 10px 10px; |
||
| 56 | color: lighten(#000000, 40%); |
||
| 57 | font-size: 13px; |
||
| 58 | } |
||
| 59 | |||
| 60 | .mt-stats { |
||
| 61 | margin: 30px 0px 0px 0px; |
||
| 62 | |||
| 63 | .btn-group { |
||
| 64 | border-top: 1px solid $general-panel-border-color; |
||
| 65 | |||
| 66 | |||
| 67 | .btn { |
||
| 68 | padding: 10px 10px; |
||
| 69 | font-size: 14px; |
||
| 70 | border-right:1px solid $general-panel-border-color; |
||
| 71 | |||
| 72 | &:hover { |
||
| 73 | background-color:$general-panel-border-color; |
||
| 74 | } |
||
| 75 | |||
| 76 | &:last-child { |
||
| 77 | border: 0; |
||
| 78 | } |
||
| 79 | |||
| 80 | > i { |
||
| 81 | position: relative; |
||
| 82 | top: 3px; |
||
| 83 | right: 2px; |
||
| 84 | font-size: 16px; |
||
| 85 | } |
||
| 86 | |||
| 87 | &:first-child { |
||
| 88 | border-bottom-left-radius: $general-border-radius !important; |
||
| 89 | |||
| 90 | } |
||
| 91 | |||
| 92 | &:last-child { |
||
| 93 | border-bottom-right-radius: $general-border-radius !important; |
||
| 94 | |||
| 95 | } |
||
| 96 | } |
||
| 97 | } |
||
| 98 | } |
||
| 99 | } |
||
| 100 | } |
||
| 101 | |||
| 102 | .mt-widget-2 { |
||
| 103 | border: 1px solid $general-panel-border-color; |
||
| 104 | position:relative; |
||
| 105 | |||
| 106 | .mt-head { |
||
| 107 | position:absolute; |
||
| 108 | width: 100%; |
||
| 109 | background-size:100% 100%; |
||
| 110 | |||
| 111 | .mt-head-label { |
||
| 112 | position:absolute; |
||
| 113 | top: 8px; |
||
| 114 | right:8px; |
||
| 115 | cursor: pointer; |
||
| 116 | |||
| 117 | > button { |
||
| 118 | font-size: 13px; |
||
| 119 | border-radius: 2px !important; |
||
| 120 | } |
||
| 121 | } |
||
| 122 | |||
| 123 | .mt-head-user { |
||
| 124 | |||
| 125 | .mt-head-user-img { |
||
| 126 | position:relative; |
||
| 127 | float: left; |
||
| 128 | margin:165px 32px 18px 35px; |
||
| 129 | |||
| 130 | &::after { |
||
| 131 | content: ""; |
||
| 132 | position: absolute; |
||
| 133 | top: 90%; |
||
| 134 | left: 50%; |
||
| 135 | margin-left: -15px; |
||
| 136 | border-width: 13px; |
||
| 137 | border-style: solid; |
||
| 138 | border-color: transparent transparent white transparent; |
||
| 139 | } |
||
| 140 | |||
| 141 | > img { |
||
| 142 | width: 65px; |
||
| 143 | border-radius:50% !important; |
||
| 144 | |||
| 145 | } |
||
| 146 | } |
||
| 147 | |||
| 148 | .mt-head-user-info { |
||
| 149 | margin: 175px 0 0 -9px; |
||
| 150 | color: white; |
||
| 151 | display: inline-block; |
||
| 152 | |||
| 153 | .mt-user-name { |
||
| 154 | display: block; |
||
| 155 | font-size: 15px; |
||
| 156 | } |
||
| 157 | |||
| 158 | .mt-user-time { |
||
| 159 | font-size: 13px; |
||
| 160 | |||
| 161 | > i { |
||
| 162 | position: relative; |
||
| 163 | top: 1px; |
||
| 164 | font-size: 13px; |
||
| 165 | } |
||
| 166 | |||
| 167 | display: block; |
||
| 168 | } |
||
| 169 | } |
||
| 170 | } |
||
| 171 | } |
||
| 172 | |||
| 173 | .mt-body { |
||
| 174 | padding-top:160px; |
||
| 175 | text-align:center; |
||
| 176 | |||
| 177 | .mt-body-title { |
||
| 178 | margin-top:130px; |
||
| 179 | font-weight: 600; |
||
| 180 | font-size: 16px; |
||
| 181 | } |
||
| 182 | |||
| 183 | .mt-body-description { |
||
| 184 | margin-top: 10px; |
||
| 185 | display: inline-block; |
||
| 186 | color: lighten(#000000, 40%); |
||
| 187 | font-size: 13px; |
||
| 188 | padding: 0 10px; |
||
| 189 | } |
||
| 190 | |||
| 191 | .mt-body-stats { |
||
| 192 | @include clearfix(); |
||
| 193 | padding: 0; |
||
| 194 | |||
| 195 | > li { |
||
| 196 | margin: 15px; |
||
| 197 | list-style: none; |
||
| 198 | display: inline-block; |
||
| 199 | } |
||
| 200 | } |
||
| 201 | |||
| 202 | .mt-body-actions { |
||
| 203 | border-top: 1px solid $general-panel-border-color; |
||
| 204 | |||
| 205 | > i { |
||
| 206 | font-size: 18px; |
||
| 207 | } |
||
| 208 | |||
| 209 | .btn { |
||
| 210 | font-size: 14px; |
||
| 211 | border-right: 1px solid $general-panel-border-color; |
||
| 212 | padding:12px 0 12px 0; |
||
| 213 | text-align: center; |
||
| 214 | |||
| 215 | &:last-child { |
||
| 216 | border:0; |
||
| 217 | } |
||
| 218 | } |
||
| 219 | } |
||
| 220 | } |
||
| 221 | } |
||
| 222 | |||
| 223 | .mt-widget-3 { |
||
| 224 | border: 1px solid $general-panel-border-color; |
||
| 225 | .mt-head { |
||
| 226 | background-color:#5DC9E6; |
||
| 227 | margin-bottom: 20px; |
||
| 228 | color: white; |
||
| 229 | padding: 15px 0; |
||
| 230 | |||
| 231 | .mt-head-icon { |
||
| 232 | font-size: 35px; |
||
| 233 | text-align: center; |
||
| 234 | padding-top: 20px; |
||
| 235 | margin-bottom: 10px; |
||
| 236 | } |
||
| 237 | |||
| 238 | .mt-head-desc { |
||
| 239 | margin-left: 10px; |
||
| 240 | margin-right: 10px; |
||
| 241 | text-align: center; |
||
| 242 | color: #fff; |
||
| 243 | @include opacity(0.8); |
||
| 244 | } |
||
| 245 | |||
| 246 | .mt-head-date { |
||
| 247 | text-align: center; |
||
| 248 | margin-top: 20px; |
||
| 249 | display: block; |
||
| 250 | color: darken(#fff, 5%); |
||
| 251 | } |
||
| 252 | |||
| 253 | .mt-head-button { |
||
| 254 | margin: 10px 0; |
||
| 255 | text-align: center; |
||
| 256 | padding:20px; |
||
| 257 | |||
| 258 | |||
| 259 | > button { |
||
| 260 | width: 90px; |
||
| 261 | } |
||
| 262 | } |
||
| 263 | } |
||
| 264 | |||
| 265 | .mt-body-actions-icons { |
||
| 266 | |||
| 267 | .btn-group { |
||
| 268 | margin-bottom: 20px; |
||
| 269 | |||
| 270 | .mt-icon { |
||
| 271 | display: block; |
||
| 272 | position:relative; |
||
| 273 | padding:5px; |
||
| 274 | font-size: 15px; |
||
| 275 | } |
||
| 276 | } |
||
| 277 | .btn { |
||
| 278 | border-right: 1px solid $general-panel-border-color; |
||
| 279 | font-size: 11px; |
||
| 280 | text-align: center; |
||
| 281 | padding: 0; |
||
| 282 | |||
| 283 | |||
| 284 | &:last-child { |
||
| 285 | border-right:0; |
||
| 286 | |||
| 287 | } |
||
| 288 | } |
||
| 289 | } |
||
| 290 | } |
||
| 291 | |||
| 292 | .mt-widget-4 { |
||
| 293 | min-height: 250px; |
||
| 294 | color:white; |
||
| 295 | background-color:#26C0B8; |
||
| 296 | |||
| 297 | .mt-img-container { |
||
| 298 | position:relative; |
||
| 299 | |||
| 300 | > img { |
||
| 301 | height: 250px; |
||
| 302 | width: 100%; |
||
| 303 | } |
||
| 304 | } |
||
| 305 | |||
| 306 | .mt-container { |
||
| 307 | width:150px; |
||
| 308 | background-color:#26C0B8; |
||
| 309 | min-height: 250px; |
||
| 310 | position:absolute; |
||
| 311 | right:15px; |
||
| 312 | top:0; |
||
| 313 | |||
| 314 | .mt-head-title { |
||
| 315 | text-align: center; |
||
| 316 | margin-top: 20px; |
||
| 317 | padding: 10px; |
||
| 318 | } |
||
| 319 | |||
| 320 | .mt-body-icons { |
||
| 321 | margin-top: 30px; |
||
| 322 | text-align: center; |
||
| 323 | |||
| 324 | > a { |
||
| 325 | color: darken(#fff, 10%); |
||
| 326 | display: inline-block; |
||
| 327 | padding:10px; |
||
| 328 | font-size: 17px; |
||
| 329 | |||
| 330 | &:hover { |
||
| 331 | color: #fff; |
||
| 332 | } |
||
| 333 | } |
||
| 334 | } |
||
| 335 | |||
| 336 | .mt-footer-button { |
||
| 337 | margin-top: 30px; |
||
| 338 | position:absolute; |
||
| 339 | right:0; |
||
| 340 | |||
| 341 | > .btn { |
||
| 342 | width: 90px; |
||
| 343 | border-top-right-radius:0 !important; |
||
| 344 | border-bottom-right-radius:0 !important; |
||
| 345 | border:none !important; |
||
| 346 | |||
| 347 | } |
||
| 348 | } |
||
| 349 | } |
||
| 350 | } |