SOURCE

console 命令行工具 X clear

                    
>
console
/* 
Image credit to http://www.flaticon.com/packs/landscapes-collection
*/
<div class="container">
  <ul>
  <li>
    <div><img src="http://3.1m.yt/TRDtJPn.png" alt="" /></div>
    <h1>Enjoy paradise</h1>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et risus ante. </p>
    <a href="#">View more</a>
  </li>
  <li>
    <div><img src="http://1.1m.yt/48o8wNw.png" alt="" /></div>
    <h1>Discover the big city</h1>
    <p>In mattis nibh id mauris maximus mattis. Duis tincidunt tincidunt dignissim. Mauris feugiat.</p>
    <a href="#">View more</a>
  </li>
  <li>
    <div><img src="http://2.1m.yt/IBn8cEa.png" alt="" /></div>
    <h1>Explore the countryside</h1>
    <p>Sed non viverra nulla. Etiam eu vehicula tellus. Aenean eleifend purus nec fermentum </p>
    <a href="#">View more</a>
  </li>
</ul>
</div>
@import url(https://fonts.googleapis.com/css?family=Varela+Round);

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  line-height: 1.6;
}

.container {
  display: block;
  height: 100%;
  padding: 100px 0;
  background: linear-gradient(to bottom, #64B5F6 300px, #fcfaf0 300px, #efefef);
}

ul {
  display: block;
  width: 900px;
  margin: 0 auto;
  position: relative;
  height: 500px;
  li {
    height: 450px;
    width: 33.33333%;
    background: #fff;
    float: left;
    display: inline;
    box-shadow: 0 5px 30px 0 rgba(0,0,0,0.3);
    border-radius: 7px;
    position: absolute;
    text-align: center;
    padding: 50px 30px;
    &:nth-child(2) {
      z-index: 10;
      left: 50%;
      transform: translateX(-50%);
      top: -25px;
      height: 500px;
      width: 35%;
      padding-top: 75px;
      padding-bottom: 75px;
    }
    &:nth-child(3) {
      right: 0;
    }
  }
  
  div {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2em;
    background: #eee;
    box-shadow: 0 0 0 4px #ddd;
  }
}

h1 {
  font-family: "Varela Round", sans-serif;
  font-size: 1.2em;
  margin-bottom: .6em;
  color: #2C3E50;
}

p {
  color: rgba(0,0,0,0.5);
  font-size: .8em;
  margin-bottom: 2em;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8em;
}