| 1 |
.stp_shortcode_box_after_title { |
| 2 |
display: flex; |
| 3 |
background: #fff; |
| 4 |
padding: 5px 15px; |
| 5 |
align-items: center; |
| 6 |
gap: 15px; |
| 7 |
border-radius: 3px; |
| 8 |
margin-top: 10px; |
| 9 |
border: 1px solid #ccc; |
| 10 |
} |
| 11 |
|
| 12 |
.stp_shortcode_box_after_title label { |
| 13 |
font-weight: 500; |
| 14 |
font-size: 1rem; |
| 15 |
} |
| 16 |
|
| 17 |
.stp_shortcode_box_after_title .shortcode_area { |
| 18 |
display: flex; |
| 19 |
align-items: center; |
| 20 |
gap: 10px; |
| 21 |
} |
| 22 |
|
| 23 |
.stp_shortcode_box_after_title .shortcode_area svg { |
| 24 |
cursor: pointer; |
| 25 |
} |
| 26 |
|
| 27 |
/* Desing upgrade menu */ |
| 28 |
.fs-submenu-item.streamcast.pricing.upgrade-mode { |
| 29 |
background: #fb7a01; |
| 30 |
border-radius: 3px; |
| 31 |
color: #fff; |
| 32 |
display: inline-block; |
| 33 |
padding: 6px 40px 6px 15px; |
| 34 |
} |
| 35 |
|
| 36 |
|
| 37 |
.button.button-bplugins { |
| 38 |
background: #fb7a01; |
| 39 |
color: #fff; |
| 40 |
border: none; |
| 41 |
} |
| 42 |
|
| 43 |
.button.button-bplugins:active, |
| 44 |
.button.button-bplugins:focus { |
| 45 |
background: #d66801; |
| 46 |
color: #fff; |
| 47 |
} |
| 48 |
|
| 49 |
/* Pro Notice Box Styles */ |
| 50 |
.stp-pro-notice-box { |
| 51 |
background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%); |
| 52 |
padding: 25px; |
| 53 |
border-radius: 12px; |
| 54 |
border: 1px solid #ffeed6; |
| 55 |
box-shadow: 0 4px 15px rgba(251, 122, 1, 0.05); |
| 56 |
position: relative; |
| 57 |
overflow: hidden; |
| 58 |
} |
| 59 |
|
| 60 |
.stp-pro-notice-box::before { |
| 61 |
content: ""; |
| 62 |
position: absolute; |
| 63 |
top: 0; |
| 64 |
left: 0; |
| 65 |
width: 4px; |
| 66 |
height: 100%; |
| 67 |
background: #fb7a01; |
| 68 |
} |
| 69 |
|
| 70 |
.stp-pro-notice-title { |
| 71 |
margin-top: 0 !important; |
| 72 |
color: #d66801 !important; |
| 73 |
font-size: 18px !important; |
| 74 |
font-weight: 700 !important; |
| 75 |
display: flex; |
| 76 |
align-items: center; |
| 77 |
gap: 10px; |
| 78 |
margin-bottom: 12px; |
| 79 |
} |
| 80 |
|
| 81 |
.stp-pro-notice-desc { |
| 82 |
font-size: 14px; |
| 83 |
color: #8c4400; |
| 84 |
margin-bottom: 20px; |
| 85 |
font-weight: 400; |
| 86 |
margin-top: 0px; |
| 87 |
} |
| 88 |
|
| 89 |
.stp-pro-notice-list { |
| 90 |
margin: 15px 0 !important; |
| 91 |
padding-left: 0 !important; |
| 92 |
list-style: none !important; |
| 93 |
} |
| 94 |
|
| 95 |
.stp-pro-notice-list li { |
| 96 |
position: relative; |
| 97 |
padding-left: 25px; |
| 98 |
margin-bottom: 10px; |
| 99 |
color: #d66801; |
| 100 |
font-size: 13.5px; |
| 101 |
} |
| 102 |
|
| 103 |
.stp-pro-notice-list li::before { |
| 104 |
content: "✦"; |
| 105 |
position: absolute; |
| 106 |
left: 0; |
| 107 |
color: #fb7a01; |
| 108 |
font-weight: bold; |
| 109 |
} |
| 110 |
|
| 111 |
.stp-pro-notice-list li strong { |
| 112 |
color: #8c4400; |
| 113 |
} |
| 114 |
|
| 115 |
.stp-pro-notice-button { |
| 116 |
display: inline-flex; |
| 117 |
align-items: center; |
| 118 |
justify-content: center; |
| 119 |
background: #fb7a01; |
| 120 |
color: #fff !important; |
| 121 |
padding: 10px 22px; |
| 122 |
border-radius: 6px; |
| 123 |
text-decoration: none !important; |
| 124 |
font-weight: 600; |
| 125 |
font-size: 14px; |
| 126 |
transition: all 0.3s ease; |
| 127 |
box-shadow: 0 4px 12px rgba(251, 122, 1, 0.2); |
| 128 |
border: none; |
| 129 |
cursor: pointer; |
| 130 |
} |
| 131 |
|
| 132 |
.stp-pro-notice-button:hover { |
| 133 |
background: #d66801; |
| 134 |
transform: translateY(-2px); |
| 135 |
box-shadow: 0 6px 18px rgba(251, 122, 1, 0.3); |
| 136 |
color: #fff !important; |
| 137 |
} |