Időpontok közti differencia számítása
2019-08-23
Fancybox kép megnyitása külső hivatkozással
2020-03-02
<div class="container">
  
  <blockquote class="brooks">
    Tragedy is when I cut my finger. Comedy is when you walk into an open sewer and die.
  </blockquote>
  
  <blockquote class="ludwig">
    I don't know why we are here, but I'm pretty sure that it is not in order to enjoy ourselves.
  </blockquote>
  
  <blockquote class="groucho">
    I don't have a photograph. I'd give you my footprints, but they're upstairs in my socks.
    <footer>Groucho Marx</footer>
  </blockquote>
  
</div>

 

/* Some vars */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,700);
@import url(https://fonts.googleapis.com/css?family=Sanchez:400italic,400);
@import url(https://fonts.googleapis.com/css?family=Roboto:100);
.brooks {
  position: relative;
  font-family: 'Sanchez', serif;
  font-size: 2.4em;
  line-height: 1.5em;
  font-style: italic;
}
.brooks:before {
  content: '\201C';
  position: absolute;
  top: 0.25em;
  left: -0.15em;
  color: #e7e6e4;
  font-size: 6em;
  z-index: -1;
}

.ludwig {
  position: relative;
  padding-left: 1em;
  border-left: 0.2em solid #4d91b3;
  font-family: 'Roboto', serif;
  font-size: 2.4em;
  line-height: 1.5em;
  font-weight: 100;
}
.ludwig:before, .ludwig:after {
  content: '\201C';
  font-family: 'Sanchez';
  color: #4d91b3;
}
.ludwig:after {
  content: '\201D';
}

.groucho {
  position: relative;
  font-family: 'Sanchez', serif;
  font-size: 2.4em;
  line-height: 1.5em;
}
.groucho footer {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.6em;
  font-weight: 700;
  color: #d3d3cf;
  float: right;
}
.groucho footer:before {
  content: '\2015';
}
.groucho:after {
  content: '\201D';
  position: absolute;
  top: 0.28em;
  right: 0;
  font-size: 6em;
  font-style: italic;
  color: #e7e6e4;
  z-index: -1;
}

/* Some generic stuff. Don't worry about it */
html {
  background: #f8f8f7;
  font-size: 16px;
}

body {
  color: #3d748f;
  font-size: 62.5%;
}

.container {
  width: 80em;
  margin: 2em auto;
}

blockquote {
  margin-bottom: 3em;
}

Comments are closed.