| 1 |
|
| 2 |
/** <pre> tag */ |
| 3 |
pre { |
| 4 |
position: relative; |
| 5 |
} |
| 6 |
|
| 7 |
/** 'Copy' button and JS. */ |
| 8 |
.copy-the-code-inside-wrap .copy-the-code-button { |
| 9 |
position: absolute !important; |
| 10 |
right: 0 !important; |
| 11 |
top: 0 !important; |
| 12 |
} |
| 13 |
|
| 14 |
.copy-the-code-button { |
| 15 |
background: #e1e3e8 !important; |
| 16 |
padding: 10px 20px !important; |
| 17 |
cursor: pointer !important; |
| 18 |
box-shadow: none !important; |
| 19 |
color: #424242 !important; |
| 20 |
font-size: 14px !important; |
| 21 |
font-weight: normal !important; |
| 22 |
border-radius: 0 !important; |
| 23 |
text-transform: capitalize !important; |
| 24 |
border: none !important; |
| 25 |
} |
| 26 |
|
| 27 |
.copy-the-code-button:hover { |
| 28 |
background: #d0d1d6 !important; |
| 29 |
} |
| 30 |
|
| 31 |
.copy-the-code-outside + * { |
| 32 |
margin-top: 0; |
| 33 |
} |
| 34 |
|
| 35 |
.copy-the-code-outside { |
| 36 |
text-align: right; |
| 37 |
} |
| 38 |
|