Weekly digital resources #4

Facebooktwitterlinkedinmail

As every week, enjoy new resources about web and digital stuff: CSS snippets, a Javascript library, and two links to the amazing hongkiat.com and codecondo.com websites.

 

CSS snippet #1: outer box shadow

<style>
 #outer-box-shadow{
 margin: 30px;
 background-color: yellow;
 -webkit-box-shadow: 10px 10px 5px #888888;
 -moz-box-shadow: 10px 10px 5px #888888;
 box-shadow: 10px 10px 5px #888888;
 }
 </style>
 <div id="outer-box-shadow">Lorem ipsum dolor sit amet, et blandit vivendum suavitate nam, audire disputando vituperatoribus cu mel, nec an purto tota electram. Sed ut debet soluta persecuti. Animal splendide at mel. Te eum meis vidit, oratio meliore adversarium mei ne, sed te solum percipit. Ea quodsi sententiae nam. Vim eligendi indoctum dissentiunt at, ut vix habeo electram suscipiantur.</div>

 

Outer CSS3 Box Shadow

 

CSS snippet #2: multiple columns text

<style>
 #columns-3 {
 text-align: justify;
 -moz-column-count: 3;
 -moz-column-gap: 12px;
 -moz-column-rule: 1px solid #c4c8cc;
 -webkit-column-count: 3;
 -webkit-column-gap: 12px;
 -webkit-column-rule: 1px solid #c4c8cc;
 }
 </style>
 <p id="columns-3">Super Mario Bros. is a 1985 platform video game internally developed by Nintendo R&amp;D4 and published by Nintendo as a pseudo-sequel to the 1983 game Mario Bros. It was originally released in Japan for the Family Computer on September 13, 1985, and later that year for the Nintendo Entertainment System in North America and Europe on May 15, 1987, and Australia later in 1987. It is the first of the Super Mario series of games.</p>

 

CSS Multiple columns text

 

CSS Type Set Code Generator

 

CSS Type Set Code Generator

 

A minimal 4kb Javascript library for showing and hiding things or to create a slider

 

Slider with Javascript library

 

8 tips to increase downloads for your app

 

App icons

 

5 psychological triggers for high website conversions

 

 

One thought on “Weekly digital resources #4”

Leave a Reply

Your email address will not be published. Required fields are marked *