<div class="container">
  <div class="timeline tm">
    <div class="tm__year">
      <div class="tm__label">2019</div>
      <ul class="tm__events">
        <li class="tm__event">
          <h2 class="tm__event__heading">Ceramiq, Órgiva, Spain</h2>
          A cyanotype exhibition.
        </li>
        <li class="tm__event">
          <h2 class="tm__event__heading">La Azucarera, Motril, Spain</h2>
          Emma organised an exhibition for 50 artists!
        </li>
        <li class="tm__event">
          <h2 class="tm__event__heading">La Botíca, Salobreña, Spain</h2>
          Exhibition in a restaurant.
        </li>
        <li class="tm__event">
          <h2 class="tm__event__heading">University of Granada, Spain</h2>
          One day lecture to give the students an idea of what life is like being a professional artist.
        </li>
        <li class="tm__event">
          <h2 class="tm__event__heading">4 Artists – Jardín Nazarí, Vélez de Benaudalla</h2>
          Mix Amylo, ClaraBaza, Emma Plunkett and Beatrice Constán, <a href="https://www.emmaplunkett.art/art-blog/exhibitions-art-blog/mix-clara-emma-bea/">group show</a> organised my Emma.
        </li>
      </ul>
    </div>
    <div class="tm__year">
      <div class="tm__label">2018</div>
      <ul class="tm__events">
        <li class="tm__event">
          <h2 class="tm__event__heading">Rogue Gallery – Glastonbury Festival, The United Kingdom</h2>
          An art gallery situated in the circus and theatre space at Glastonbury festival, dedicated to art with an aerial theme.
        </li>
        <li class="tm__event">
          <h2 class="tm__event__heading">PINK – ANA Art Exhibition, Spain</h2>
          Unlike the title suggests, this was not a soft feminine affair. This was a strong, brave and interesting show of PINK, held in the Jardin Nazari of Vélez de Benaudalla, Granada, Spain. I was co organiser and exhibitor.
        </li>
        <li class="tm__event">
          <h2 class="tm__event__heading">9th Annual Competa Art Walk, Spain</h2>
          38 artists in a range of alternative and gallery spaces opened up to the public around the picturesque village of Competa in Malaga province.
        </li>
      </ul>
    </div>
    <div class="tm__year">
      <div class="tm__label">2017</div>
      <ul class="tm__events">
        <li class="tm__event">
          <h2 class="tm__event__heading">Impresiónes – ANA Group Print Show, Spain</h2>
          Mixed group art print show in Órgiva, with my art group – Artists Network Alpujarra. Organiser and exhibiter.
        </li>
      </ul>
    </div>
    <div class="tm__year">
      <div class="tm__label">2016</div>
      <ul class="tm__events">
        <li class="tm__event">
          <h2 class="tm__event__heading">University Granada, Spain</h2>
          A one day visiting lecturer, showing films and talking about the importance of art and my art film career. <a href="https://www.emmaplunkett.art/art-blog/art-film-career/">See film.</a>
        </li>
      </ul>
    </div>
    <div class="tm__line"></div>
  </div>
</div>
// Vars
$bgColor = #ffffff
$txtColor = #444444
$bgColor ?= #001138
$txtColor ?= #3fd100
$linkColor ?= #ec008c

// Initial setup
*
  box-sizing: border-box

body
  background-color: $bgColor
  min-height: 100vh
  font-size: 16px
  line-height: 1.425
  font-family: 'PT Sans', sans-serif
  color: $txtColor

a
  color: $linkColor

.container
  margin: 0 auto
  max-width: 68.75rem
  padding: 0 1rem

// Timeline styling
.tm
  min-height: 100vh
  position: relative

  &__line
    position: absolute
    width: 2px
    top: 0
    bottom: 0
    left: 100%
    transform: translateX(-5rem)
    background-color: lighten($txtColor, 80%)
    z-index: -1

  &__year
    position: relative
    min-height: 10rem
    margin-top: 3rem

    &:first-child
      margin-top: 0

  &__label
    color: rgba($txtColor, 0.3)
    color: $bgColor
    font-family: 'PT Serif', serif
    font-weight: bold
    font-size: 4rem
    line-height: 1
    transform: rotate(-90deg)
    transform-origin: 100% 0
    position: absolute
    top: 0
    right: 4.75rem
    max-width: 16rem
    text-align: right
    text-shadow: -1px -1px 0 rgba($linkColor, 0.6), 1px -1px 0 rgba($linkColor, 0.6), -1px 1px 0 rgba($linkColor, 0.6), 1px 1px 0 rgba($linkColor, 0.6)

  &__events
    width: calc(100% - 5rem)
    text-align: right

  &__event
    padding: 1rem 0
    padding-right: 2rem
    position: relative

    &::after
      content: ''
      width: 1rem
      height: 1rem
      background-color: $linkColor
      position: absolute
      top: 1.5rem
      right: calc(-0.5rem - 1px)
      transform: rotate(45deg)
      animation-duration: 1.5s
      animation-name: microEvent
      animation-iteration-count: infinite
      animation-delay: 0

    &:nth-child(odd)
      &::after
        animation-delay: 0.75s

    @keyframes microEvent
      from
        box-shadow: 0 0 0 rgba($linkColor, 0.5)

      to
        box-shadow: 0 0 1rem 0.5rem rgba($linkColor, 0.1)

    &__heading
      font-size: 1.5rem
      line-height: 1.2
      margin-bottom: 0.5rem
      color: $linkColor
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.