Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!--Disclaimer: This CodePen is provided for instructional purposes only. Vidyard cannot support or guarantee any dependencies on third-party code or libraries such as JavaScript, jQuery or CSS-->

<!--Pulsing CTA button - edited by Chris Broughton

Useful at the end of a video (Post Roll Event)

Line 14 - Border Color
Line 15 - Background Color
Line 16 - Font Color
Line 17 - Font
Line 19 - On Hover Color
Line 21 - Link and Text

-->
<style>.vidyard-cta-holder .vidyard_padding{overflow: hidden;}.button{border-radius: 1vw; display: inline-block; padding: 5vw; text-align: center; font-weight: bold; text-decoration: none; 
border: 5px solid #000000; /*Border  Color*/
background-color: #333333; /*Button Background Color*/
color: white; /*Font Color*/
font-family: "Open Sans", Arial, sans-serif;/*Font*/
width: 33vw; padding: 2vw 11vw; margin: 22%; font-size: 4vw; box-shadow: 0 1vw 2vw 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);}@keyframes pulse_animation{0%{transform: scale(1);}10%{transform: scale(1);}20%{transform: scale(1);}30%{transform: scale(1);}40%{transform: scale(1.05);}50%{transform: scale(1);}60%{transform: scale(1);}70%{transform: scale(1.05);}80%{transform: scale(1);}100%{transform: scale(1);}}.pulse{animation-name: pulse_animation; animation-duration: 5000ms; transform-origin:70% 70%; animation-iteration-count: infinite; animation-timing-function: linear;}.button:hover{transform: scale(2); 
background-color: #000000; /*On Hover Background Colour*/
}</style>
<a href="http://yourlinkhere.com" class="button pulse">Register Now</a>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console