| 1 |
.sdevs-install-plugin { |
| 2 |
display: flex; |
| 3 |
flex-wrap: wrap; |
| 4 |
align-items: center; |
| 5 |
padding-left: 20px; |
| 6 |
} |
| 7 |
|
| 8 |
.sdevs-install-plugin>.sdevs-notice-icon { |
| 9 |
margin-right: 25px; |
| 10 |
} |
| 11 |
|
| 12 |
.sdevs-install-plugin>.sdevs-notice-icon>img { |
| 13 |
max-width: 64px; |
| 14 |
} |
| 15 |
|
| 16 |
.sdevs-notice-content { |
| 17 |
flex-grow: 1; |
| 18 |
padding: 20px 0px 20px 0px; |
| 19 |
} |
| 20 |
|
| 21 |
.sdevs-notice-content>h2 { |
| 22 |
margin-bottom: 5px; |
| 23 |
margin-top: 0; |
| 24 |
} |
| 25 |
|
| 26 |
.sdevs-notice-content>p { |
| 27 |
margin: 0; |
| 28 |
} |
| 29 |
|
| 30 |
.sdevs-install-notice-button>a { |
| 31 |
padding-left: 30px; |
| 32 |
padding-right: 30px; |
| 33 |
display: flex; |
| 34 |
align-items: center; |
| 35 |
} |
| 36 |
|
| 37 |
.sdevs-loading-icon { |
| 38 |
width: 17px; |
| 39 |
height: 17px; |
| 40 |
margin-right: 5px; |
| 41 |
position: relative; |
| 42 |
top: 3px; |
| 43 |
left: 3px; |
| 44 |
-webkit-animation: rotation 2s infinite linear; |
| 45 |
} |
| 46 |
|
| 47 |
@-webkit-keyframes rotation { |
| 48 |
from { |
| 49 |
-webkit-transform: rotate(0deg); |
| 50 |
} |
| 51 |
|
| 52 |
to { |
| 53 |
-webkit-transform: rotate(359deg); |
| 54 |
} |
| 55 |
} |