<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
===========================================================
Photo Viewer
By Curtis Campbell
Version 0.1
March 24, 2015
===========================================================
**/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);

.photo-viewer * {
  box-sizing: border-box;
}

.photo-viewer a {
  color: #FFF;
  text-decoration: none;
}

.photo-viewer a:hover {
  color: orange;
}

.photo-viewer {
  width: 100%;
  height: 100%;
  background: #0e0e0e;

  position: fixed;
  top: 0;
  left: -99999px;
  z-index: 9999;

  overflow: hidden;

  opacity: 0;

  -webkit-transform: scale(0.2);
  transform: scale(0.2);

  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.5s ease, transform 0.2s ease;

  font-family: 'Open Sans', Arial, sans-serif;
}

.photo-viewer--visible {
  opacity: 1;
  left: 0;

  -webkit-transform: scale(1);
  transform: scale(1);
}

.photo-viewer--title {
  width: 100%;
  height: 60px;

  background: rgba(0,0,0,0.75);

  position: absolute;
  top: 0;
  left: 0;

  z-index: 20;
}

.photo-viewer--title h1 {
  height: 100%;
  margin: 0;

  color: #FFF;
  text-align: center;
  font-size: 1.2rem;
  line-height: 60px;
}

.photo-viewer--title .photo-viewer--close {
  width: 40px;
  height: 40px;
  margin: 10px;

  background: rgba(255,255,255,0.2);
  border-radius: 40px;

  position: absolute;
  right: 0;
  top: 0;

  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}

.photo-viewer--container {
  position: relative;
  height: 100%;
  white-space: nowrap;
}

.photo-viewer--current-image {
  width: 100%;
  height: 100%;
  line-height: 1px;
  display: inline-block;
  text-align: center;
  margin: 0;

  opacity: 0;

  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;

  position: relative;
    left: 0;
}

.photo-viewer--current-image:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  margin-right: -1px;
  vertical-align: middle;
}

.photo-viewer--current-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;

  display: inline-block;
  vertical-align: middle;
}

.photo-viewer--current-image.loaded {
  opacity: 1;
}

.photo-viewer--controls {
  width: 100%;
  height: 60px;
  padding: 0 20px;

  background: rgba(0,0,0,0.75);

  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;

  color: #FFF;
  font-size: 1.0rem;
  line-height: 60px;
}

.photo-viewer--controls .photo-viewer--previous-image {
  width: 120px;
  float: left;
}

.photo-viewer--controls .photo-viewer--previous-image img {
  height: 35px;
}

.photo-viewer--controls .photo-viewer--count {
  width: calc(100% - 240px);
  float: left;

  text-align: center;
}

.photo-viewer--controls .photo-viewer--next-image {
  width: 120px;
  float: right;
  text-align: right;
}

.photo-viewer--controls .photo-viewer--next-image img {
  height: 35px;
}
</pre></body></html>