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

              
                <!-- https://thinking-grid-artifact-xvf.netlify.app/ -->
    <main>
        <section>
            <h1>Said Dokins</h1>
            <p>Originario de la Ciudad de México, su práctica cultural se desarrolla entre la producción del arte contemporáneo, la investigación y la gestión cultural; ha realizado diversos proyectos curatoriales relacionados al arte urbano y las diversas situaciones políticas que se viven en su país. Es ganador, entre otros premios, del Premio Iberoamericano a la creación contemporánea 'Córtes de Cádiz. Juan Luis Vasallo, 2015' en España. Su trabajo artístico ha sido mostrado a nivel nacional e internacional en países como España, Francia, Italia, Alemania, Holanda, Bélgica, Reino Unido, Argentina, Chile, Brasil, Perú, El Salvador, entre otros. Para Dokins la caligrafía y el grafiti son parte esencial de su trabajo y las concibe como prácticas intermediales de inscripción y huella, de tergiversación de los órdenes simbólicos y como lugar de enunciación política. Para Dokins toda experiencia es una huella, una impronta psíquica que marca una textura en nuestro universo simbólico, en ese sentido la caligrafía y el graffiti no sólo están en la tinta y el papel, en el aerosol y el muro sino en cada acontecimiento de nuestra existencia.
                </p>
        </section>
            <img src="https://d33wubrfki0l68.cloudfront.net/f95ab6a3af83f5521922665dae74311459951a5c/938be/said-poster.jpg" alt="Poster by Said Dokins">
        <aside>Photo by: <a href="https://www.instagram.com/ximenavf92/" target="-blank">@ximenavf92</a><br />Poster Art by: <a href="https://www.instagram.com/saidokins/" target="_blank">@saiddokins</a></aside>
    </main>
              
            
!

CSS

              
                @import url('https://fonts.googleapis.com/css?family=Abril+Fatface|Raleway:400,700&display=swap');

body {
    margin: 10vh 10vw;
    background: #1b2463;
}

main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 110px 1fr;
}

section {
    grid-column: 1/4;
    grid-row: 2/3;
    z-index: 2;
    width: 40vw;
    background: rgba(255,255,255,.9);
    padding: 2.5em 2.5em;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
}

h1 {
    font-size: 5.5em;
    font-family: 'Abril Fatface', serif;
    letter-spacing: .03em;
    margin: 0;
    color: rgb(37, 52, 163);
}

p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    color: #1b2463;
}

img {
    grid-column: 2/6;
    grid-row: 1/7;
    border-radius: 10px;
    width: 70vw;
    object-fit: cover;
    overflow: hidden;
}

aside {
    grid-column: 5/6;
    grid-row: 3/3;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2em;
    line-height: 1.5em;
    transform: rotate(-15deg);
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,.2);
    background: rgb(37, 52, 163);
    border-radius: 10px;
    padding: 1.3em;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
    letter-spacing: .06em;
}

aside a {
    color: #ffffff;
}
              
            
!

JS

              
                
              
            
!
999px

Console