| 1 |
/** |
| 2 |
* Email Editor Fallback Styles |
| 3 |
*/ |
| 4 |
|
| 5 |
.doi-email-editor-header { |
| 6 |
margin-bottom: 20px; |
| 7 |
} |
| 8 |
|
| 9 |
.doi-email-editor-header h1 { |
| 10 |
margin-top: 10px; |
| 11 |
} |
| 12 |
|
| 13 |
.doi-back-link { |
| 14 |
display: inline-block; |
| 15 |
margin-bottom: 10px; |
| 16 |
text-decoration: none; |
| 17 |
} |
| 18 |
|
| 19 |
.doi-back-link:hover { |
| 20 |
text-decoration: underline; |
| 21 |
} |
| 22 |
|
| 23 |
.doi-email-editor-fallback { |
| 24 |
background: #fff; |
| 25 |
padding: 20px; |
| 26 |
border: 1px solid #c3c4c7; |
| 27 |
} |
| 28 |
|
| 29 |
.doi-email-editor-fallback pre { |
| 30 |
background: #f0f0f1; |
| 31 |
padding: 15px; |
| 32 |
border-radius: 4px; |
| 33 |
overflow-x: auto; |
| 34 |
} |
| 35 |
|
| 36 |
.doi-editor-loading { |
| 37 |
display: flex; |
| 38 |
flex-direction: column; |
| 39 |
align-items: center; |
| 40 |
justify-content: center; |
| 41 |
min-height: 400px; |
| 42 |
background: #fff; |
| 43 |
border: 1px solid #c3c4c7; |
| 44 |
} |
| 45 |
|
| 46 |
.doi-editor-loading .spinner { |
| 47 |
float: none; |
| 48 |
margin: 0 0 10px 0; |
| 49 |
} |
| 50 |
|