HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div class="container">
<h2>CSS Icons</h2>
<div class="row cf">
<div class="two col">
<div class="icon hamburger"></div>
</div>
<div class="two col">
<div class="icon tick"></div>
</div>
<div class="two col">
<div class="icon cross"></div>
</div>
<div class="two col">
<div class="icon plus"></div>
</div>
<div class="two col">
<div class="icon up"></div>
</div>
<div class="two col">
<div class="icon down"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon map"></div>
</div>
<div class="two col">
<div class="icon magnify"></div>
</div>
<div class="two col">
<div class="icon magnifyplus"></div>
</div>
<div class="two col">
<div class="icon magnifyminus"></div>
</div>
<div class="two col">
<div class="icon eye"></div>
</div>
<div class="two col">
<div class="icon stop"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon power"></div>
</div>
<div class="two col">
<div class="icon clock"></div>
</div>
<div class="two col">
<div class="icon tree"></div>
</div>
<div class="two col">
<div class="icon battery"></div>
</div>
<div class="two col">
<div class="icon bin"></div>
</div>
<div class="two col">
<div class="icon house"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon message"></div>
</div>
<div class="two col">
<div class="icon pin"></div>
</div>
<div class="two col">
<div class="icon crop"></div>
</div>
<div class="two col">
<div class="icon user"></div>
</div>
<div class="two col">
<div class="icon pie"></div>
</div>
<div class="two col">
<div class="icon refresh"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon file"></div>
</div>
<div class="two col">
<div class="icon folder"></div>
</div>
<div class="two col">
<div class="icon chart"></div>
</div>
<div class="two col">
<div class="icon barchart"></div>
</div>
<div class="two col">
<div class="icon cup"></div>
</div>
<div class="two col">
<div class="icon microphone"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon wifi"></div>
</div>
<div class="two col">
<div class="icon desktop"></div>
</div>
<div class="two col">
<div class="icon phone"></div>
</div>
<div class="two col">
<div class="icon laptop"></div>
</div>
<div class="two col">
<div class="icon speaker"></div>
</div>
<div class="two col">
<div class="icon speakermute"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon volumedown"></div>
</div>
<div class="two col">
<div class="icon volumeup"></div>
</div>
<div class="two col">
<div class="icon lock"></div>
</div>
<div class="two col">
<div class="icon unlocked"></div>
</div>
<div class="two col">
<div class="icon cloud"></div>
</div>
<div class="two col">
<div class="icon rain"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon alert"></div>
</div>
<div class="two col">
<div class="icon timer"></div>
</div>
<div class="two col">
<div class="icon pencil"></div>
</div>
<div class="two col">
<div class="icon calendar"></div>
</div>
<div class="two col">
<div class="icon calendarnumber"></div>
</div>
<div class="two col">
<div class="icon tag"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon playvideo"></div>
</div>
<div class="two col">
<div class="icon stopvideo"></div>
</div>
<div class="two col">
<div class="icon pausevideo"></div>
</div>
<div class="two col">
<div class="icon backvideo"></div>
</div>
<div class="two col">
<div class="icon forwardvideo"></div>
</div>
<div class="two col">
<div class="icon cursor"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon camera"></div>
</div>
<div class="two col">
<div class="icon envelope"></div>
</div>
<div class="two col">
<div class="icon envelopeoutline"></div>
</div>
<div class="two col">
<div class="icon clipboard"></div>
</div>
<div class="two col">
<div class="icon download"></div>
</div>
<div class="two col">
<div class="icon upload"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon toggle"></div>
</div>
<div class="two col">
<div class="icon browser"></div>
</div>
<div class="two col">
<div class="icon tennis"></div>
</div>
<div class="two col">
<div class="icon signalfull"></div>
</div>
<div class="two col">
<div class="icon signaltwo"></div>
</div>
<div class="two col">
<div class="icon signalone"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon flagsquare"></div>
</div>
<div class="two col">
<div class="icon flagtriangle"></div>
</div>
<div class="two col">
<div class="icon warning"></div>
</div>
<div class="two col">
<div class="icon copy"></div>
</div>
<div class="two col">
<div class="icon uparrow"></div>
</div>
<div class="two col">
<div class="icon downarrow"></div>
</div>
</div>
<div class="row cf">
<div class="two col">
<div class="icon leftarrow"></div>
</div>
<div class="two col">
<div class="icon rightarrow"></div>
</div>
<div class="two col">
<div class="icon music"></div>
</div>
<div class="two col">
<div class="icon umberella"></div>
</div>
<div class="two col">
<div class="icon earphones"></div>
</div>
<div class="two col">
<div class="icon lightbulb"></div>
</div>
</div>
</div>
html, body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
background-color: #2c3e50;
}
h2{
text-align: center;
color: #fff;
padding: 10px 0;
font-weight: 200;
}
/* GRID */
.twelve { width: 100%; }
.eleven { width: 91.53%; }
.ten { width: 83.06%; }
.nine { width: 74.6%; }
.eight { width: 66.13%; }
.seven { width: 57.66%; }
.six { width: 49.2%; }
.five { width: 40.73%; }
.four { width: 32.26%; }
.three { width: 23.8%; }
.two { width: 15.33%;}
.one { width: 6.866%; }
/* COLUMNS */
.col {
display: block;
float:left;
margin: 1% 0 1% 1.6%;
}
.col:first-of-type {
margin-left: 0;
}
.container{
width: 100%;
height: 100%;
max-width: 600px;
margin: 0 auto;
position: relative;
}
/* CLEARFIX */
.cf:before,
.cf:after {
content: " ";
display: table;
}
.cf:after {
clear: both;
}
.cf {
*zoom: 1;
}
.row{
margin: 30px 0;
}
/* ICONS */
.icon{
margin: 0 auto;
}
/* HAMBURGER */
.hamburger{
margin-top: 5px;
position: relative;
width: 30px;
height: 2px;
background-color: #fff;
}
.hamburger:after, .hamburger:before{
content: "";
position: absolute;
left: 0;
width: 30px;
height: 2px;
background-color: #fff;
}
.hamburger:before{
top: 10px;
}
.hamburger:after{
top: 20px;
}
/* TICK */
.tick{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(35deg);
-ms-transform: rotate(35deg);
-o-transform: rotate(35deg);
transform: rotate(35deg);
}
.tick:after{
content: "";
position: absolute;
bottom: 5.5px;
left: -13px;
width: 2px;
height: 15px;
background-color: #fff;
-webkit-transform: rotate(115deg);
-ms-transform: rotate(115deg);
-o-transform: rotate(115deg);
transform: rotate(115deg);
-webkit-transform-origin: bottom;
-moz-transform-origin: bottom;
-ms-transform-origin: bottom;
-o-transform-origin: bottom;
transform-origin: bottom;
}
/* CROSS */
.cross{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
-ms-transform-origin: center center;
-o-transform-origin: center center;
transform-origin: center center;
}
.cross:after{
content: "";
position: absolute;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
-ms-transform-origin: center center;
-o-transform-origin: center center;
transform-origin: center center;
}
/* PLUS */
.plus{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
}
.plus:after{
content: "";
position: absolute;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
-ms-transform-origin: center center;
-o-transform-origin: center center;
transform-origin: center center;
}
/* UP */
.up{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.up:after{
content: "";
position: absolute;
right: -14px;
top: -14px;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
/* DOWN */
.down{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
-o-transform: rotate(225deg);
transform: rotate(225deg);
}
.down:after{
content: "";
position: absolute;
right: -14px;
top: -14px;
width: 2px;
height: 30px;
background-color: #fff;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
/* MAP */
.map{
position: relative;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: #fff;
}
.map:after{
content: "";
position: absolute;
bottom: -12px;
left: 2px;
width: 0;
height: 0;
border-top: 20px solid #fff;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}
.map:before{
content: "";
position: absolute;
width: 7px;
height: 7px;
background-color: #2c3e50;
top: 9px;
left: 9px;
border-radius: 100%;
z-index: 100;
}
/* MAGNIFY */
.magnify{
width: 20px;
height: 20px;
border: 2px solid #fff;
border-radius: 100%;
position: relative;
-webkit-transform: rotate(-25deg);
-ms-transform: rotate(-25deg);
-o-transform: rotate(-25deg);
transform: rotate(-25deg);
}
.magnify:after{
content: "";
position: absolute;
left: 9px;
bottom: -16px;
width: 2px;
height: 16px;
background-color: #fff;
}
/* MAGNIFY PLUS */
.magnifyplus{
width: 20px;
height: 20px;
border: 2px solid #fff;
border-radius: 100%;
position: relative;
-webkit-transform: rotate(-25deg);
-ms-transform: rotate(-25deg);
-o-transform: rotate(-25deg);
transform: rotate(-25deg);
}
.magnifyplus:after{
content: "";
position: absolute;
left: 9px;
bottom: -16px;
width: 2px;
height: 16px;
background-color: #fff;
}
.magnifyplus:before{
content: "+";
position: absolute;
top: 0px;
left: 0px;
color: #fff;
font-weight: bold;
left: 5.5px;
top: -1px;
-webkit-transform: rotate(25deg);
-ms-transform: rotate(25deg);
-o-transform: rotate(25deg);
transform: rotate(25deg);
}
/* MAGNIFY MINUS */
.magnifyminus{
width: 20px;
height: 20px;
border: 2px solid #fff;
border-radius: 100%;
position: relative;
-webkit-transform: rotate(-25deg);
-ms-transform: rotate(-25deg);
-o-transform: rotate(-25deg);
transform: rotate(-25deg);
}
.magnifyminus:after{
content: "";
position: absolute;
left: 9px;
bottom: -16px;
width: 2px;
height: 16px;
background-color: #fff;
}
.magnifyminus:before{
content: "-";
position: absolute;
top: 0px;
left: 0px;
color: #fff;
font-weight: bold;
left: 8px;
top: -2px;
-webkit-transform: rotate(25deg);
-ms-transform: rotate(25deg);
-o-transform: rotate(25deg);
transform: rotate(25deg);
}
/* EYE */
.eye{
width: 30px;
height: 30px;
border: 2px solid #fff;
border-radius: 75% 15%;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.eye:before{
content: "";
position: absolute;
left: 8.5px;
top: 8.5px;
width: 13px;
height: 13px;
background-color: #fff;
border-radius: 100%;
}
/* STOP */
.stop{
position: relative;
width: 30px;
height: 30px;
border: 2px solid #fff;
border-radius: 100%;
}
.stop:before{
content: "";
position: absolute;
left: 0;
top: 14px;
width: 30px;
height: 2px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
/* POWER */
.power{
position: relative;
width: 30px;
height: 30px;
border: 2px solid #fff;
border-top-color: transparent;
border-radius: 100%;
}
.power:before{
content: "";
position: absolute;
top: -2px;
left: 14px;
width: 2px;
height: 14px;
background-color: #fff;
}
/* CLOCK */
.clock{
position: relative;
width: 30px;
height: 30px;
border: 2px solid #fff;
border-radius: 100%;
}
.clock:before{
content: "";
position: absolute;
top: 5px;
left: 14px;
width: 2px;
height: 10px;
background-color: #fff;
}
.clock:after{
content: "";
position: absolute;
top: 15px;
left: 14px;
width: 10px;
height: 2px;
background-color: #fff;
}
/* TREE */
.tree{
position: relative;
width: 0;
height: 0;
border-bottom: 20px solid #fff;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.tree:after{
content: "";
position: absolute;
left: -15px;
bottom: -30px;
width: 0;
height: 0;
border-bottom: 20px solid #fff;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.tree:before{
content: "";
position: absolute;
left: -2.5px;
bottom: -38px;
width: 5px;
height: 8px;
background-color: #fff;
}
/* BATTERY */
.battery{
margin-top: 10px;
position: relative;
width: 30px;
height: 15px;
border: 2px solid #fff;
}
.battery:after{
content: "";
position: absolute;
top: 2.5px;
left: 2.5px;
width: 18px;
height: 9px;
background-color: #fff;
}
.battery:before{
content: "";
position: absolute;
top: 2.5px;
right: -5px;
width: 5px;
height: 10px;
background-color: #fff;
}
/* BIN */
.bin{
position: relative;
width: 20px;
height: 30px;
border: 2px solid #fff;
border-top-color: transparent;
}
.bin:after{
content: "";
position: absolute;
width: 30px;
height: 2px;
top: -4px;
left: -5px;
background-color: #fff;
}
.bin:before{
content: "";
position: absolute;
top: -6px;
left: 6px;
width: 8px;
height: 3px;
background-color: #fff;
}
/* HOUSE */
.house{
position: relative;
width: 30px;
height: 30px;
background-color: #fff;
}
.house:after{
content: "";
position: absolute;
top: -12px;
left: 0;
width: 0px;
height: 0px;
border-bottom: 12px solid #fff;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.house:before{
content: "";
position: absolute;
width: 8px;
height: 12px;
background-color: #2c3e50;
bottom: 0px;
left: 11px;
}
/* MESSAGE */
.message{
width: 35px;
height: 25px;
background-color: #fff;
border-radius: 8px;
position: relative;
}
.message:after{
content: "";
position: absolute;
bottom: -8px;
right: 8px;
width: 0px;
height: 0px;
border-top: 8px solid #fff;
border-left: 5px solid transparent;
border-right: 8px solid transparent;
}
/* PIN */
.pin{
position: relative;
width: 18px;
height: 25px;
background-color: #fff;
}
.pin:before{
content: "";
position: absolute;
bottom: 0;
left: -5px;
width: 28px;
height: 2px;
background-color: #fff;
}
.pin:after{
content: "";
position: absolute;
bottom: -10px;
left: 8px;
width: 2px;
height: 10px;
background-color: #fff;
}
/* CROP */
.crop{
position: relative;
width: 25px;
height: 25px;
border: 2px solid #fff;
border-top-color: transparent;
border-right-color: transparent;
}
.crop:before{
content: "";
position: absolute;
top: 5px;
right: 5px;
width: 25px;
height: 25px;
border: 2px solid #fff;
border-bottom-color: transparent;
border-left-color: transparent;
}
.crop:after{
content: "";
position: absolute;
bottom: 12.5px;
left: -5px;
width: 35px;
height: 2px;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: center center;
-moz-transform-origin: center center;
-ms-transform-origin: center center;
-o-transform-origin: center center;
transform-origin: center center;
}
/* USER */
.user{
margin-top: 10px;
position: relative;
width: 25px;
height: 14px;
border: 2px solid #fff;
border-radius: 100% 100% 0 0;
border-bottom-color: transparent;
}
.user:before{
content: "";
position: absolute;
top: -14px;
left: 5.5px;
width: 10px;
height: 10px;
border: 2px solid #fff;
border-radius: 100%;
}
/* PIE */
.pie{
position: relative;
width: 0px;
height: 0px;
border-radius: 100%;
border-top: 15px solid #fff;
border-left: 15px solid #fff;
border-bottom: 15px solid #fff;
border-right: 15px solid transparent;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.pie:after{
content: "";
position: absolute;
top: -15px;
left: -12px;
width: 0px;
height: 0px;
border-radius: 100%;
border-top: 15px solid transparent;
border-left: 15px solid transparent;
border-bottom: 15px solid transparent;
border-right: 15px solid #fff;
}
/* REFRESH */
.refresh{
position: relative;
width: 30px;
height: 30px;
border-radius: 100%;
border: 2px solid #fff;
border-left-color: transparent;
-webkit-transform: rotate(30deg);
-ms-transform: rotate(30deg);
-o-transform: rotate(30deg);
transform: rotate(30deg);
}
.refresh:after{
content: "";
position: absolute;
bottom: -6px;
width: 0px;
height: 0px;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-right: 8px solid #fff;
-webkit-transform: rotate(10deg);
-ms-transform: rotate(10deg);
-o-transform: rotate(10deg);
transform: rotate(10deg);
}
/* FILE */
.file{
width: 20px;
height: 28px;
border: 2px solid #fff;
position: relative;
border-top-right-radius: 10px;
}
.file:after{
content: "";
position: absolute;
top: 0px;
right: -1px;
width: 0px;
height: 0px;
border-left: 6px solid #fff;
border-top: 6px solid transparent;
border-bottom: 0px solid transparent;
}
/* FOLDER */
.folder{
margin-top: 10px;
width: 28px;
height: 18px;
border: 2px solid #fff;
position: relative;
}
.folder:after{
content: "";
position: absolute;
top: -6px;
left: -2px;
width: 10px;
height: 2px;
border: 2px solid #fff;
}
/* CHART */
.chart{
position: relative;
width: 32px;
height: 28px;
border: 2px solid #fff;
border-top-color: transparent;
border-right-color: transparent;
}
.chart:after{
content: "";
position: absolute;
bottom: 1px;
left: 0px;
width: 0px;
height: 0px;
border-bottom: 13px solid #fff;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}
.chart:before{
content: "";
position: absolute;
bottom: 1px;
left: 9px;
width: 0px;
height: 0px;
border-bottom: 20px solid #fff;
border-left: 12px solid transparent;
border-right: 10px solid transparent;
}
/* BAR CHART */
.barchart{
position: relative;
width: 32px;
height: 28px;
border: 2px solid #fff;
border-top-color: transparent;
border-right-color: transparent;
}
.barchart:before{
content: "";
position: absolute;
bottom: 1px;
left: 1px;
width: 7px;
height: 22px;
background-color: #fff;
}
.barchart:after{
content: "";
position: absolute;
bottom: 1px;
left: 9px;
width: 7px;
height: 15px;
background-color: #fff;
}
/* CUP */
.cup{
position: relative;
width: 28px;
height: 28px;
background-color: #fff;
border-radius: 0 0 5px 5px;
}
.cup:after{
content: "";
position: absolute;
bottom: -4px;
left: -3px;
width: 36px;
height: 2px;
background-color: #fff;
}
.cup:before{
content: "";
position: absolute;
top: 7px;
right: -6px;
width: 4px;
height: 7px;
border-radius: 0 100% 100% 0;
border: 2px solid #fff;
background-color: #2c3e50;
}
/* MICROPHONE */
.microphone{
position: relative;
width: 10px;
height: 20px;
background-color: #fff;
border-radius: 20px;
}
.microphone:after{
content: "";
position: absolute;
bottom: -6px;
left: -12.5px;
width: 30px;
height: 30px;
border-radius: 30px;
border: 2px solid transparent;
border-bottom-color: #fff;
}
.microphone:before{
content: "";
position: absolute;
bottom: -13.5px;
left: 4px;
width: 2px;
height: 8px;
background-color: #fff;
}
/* WIFI */
.wifi{
margin-top: 15px;
position: relative;
width: 8px;
height: 8px;
border-radius: 100%;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.wifi:after{
content: "";
position: absolute;
left: -13px;
top: -9px;
width: 22px;
height: 22px;
border-radius: 100%;
border: 2px solid transparent;
border-right-color: #fff;
}
.wifi:before{
content: "";
position: absolute;
left: -18px;
top: -14px;
width: 32px;
height: 32px;
border-radius: 100%;
border: 2px solid transparent;
border-right-color: #fff;
}
/* DESKTOP */
.desktop{
position: relative;
width: 25px;
height: 16px;
border: 2px solid #fff;
}
.desktop:after{
content: "";
position: absolute;
width: 2px;
height: 8px;
background-color: #fff;
bottom: -8px;
left: 11.5px;
}
.desktop:before{
content: "";
position: absolute;
width: 16px;
height: 2px;
background-color: #fff;
bottom: -8px;
left: 4.5px;
}
/* PHONE */
.phone{
position: relative;
width: 14px;
height: 20px;
border: solid #fff;
border-top-width: 5px;
border-bottom-width: 5px;
border-left-width: 2px;
border-right-width: 2px;
border-radius: 2px;
}
.phone:after{
content: "";
position: absolute;
width: 2px;
height: 2px;
background-color: #fff;
border-radius: 100%;
left: 6px;
bottom: -3.5px;
}
/* LAPTOP */
.laptop{
position: relative;
width: 28px;
height: 16px;
border: solid #fff;
border-top-width: 4px;
border-bottom-width: 4px;
border-left-width: 2px;
border-right-width: 2px;
border-radius: 2px;
}
.laptop:after{
content: "";
position: absolute;
left: -7px;
bottom: -5px;
width: 42px;
height: 3px;
background-color: #fff;
border-radius: 0 0 3px 3px;
}
/* SPEAKER */
.speaker{
position: relative;
width: 0px;
height: 0px;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-right: 20px solid #fff;
}
.speaker:before{
content: "";
position: absolute;
top: -7.5px;
width: 10px;
height: 15px;
background-color: #fff;
}
.speaker:after{
content: "";
position: absolute;
top: -9.5px;
right: -27px;
width: 15px;
height: 15px;
border-radius: 100%;
border: 2px solid transparent;
border-right-color: #fff;
}
/* SPEAKER MUTE */
.speakermute{
position: relative;
width: 0px;
height: 0px;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-right: 20px solid #fff;
}
.speakermute:before{
content: "";
position: absolute;
top: -7.5px;
width: 10px;
height: 15px;
background-color: #fff;
}
.speakermute:after{
content: "x";
position: absolute;
top: -14px;
right: -31px;
color: #fff;
font-weight: bold;
}
/* VOLUME DOWN */
.volumedown{
position: relative;
width: 0px;
height: 0px;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-right: 20px solid #fff;
}
.volumedown:before{
content: "";
position: absolute;
top: -7.5px;
width: 10px;
height: 15px;
background-color: #fff;
}
.volumedown:after{
content: "-";
position: absolute;
top: -18px;
right: -32px;
color: #fff;
font-weight: bold;
font-size: 22px;
}
/* VOLUME UP */
.volumeup{
position: relative;
width: 0px;
height: 0px;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-right: 20px solid #fff;
}
.volumeup:before{
content: "";
position: absolute;
top: -7.5px;
width: 10px;
height: 15px;
background-color: #fff;
}
.volumeup:after{
content: "+";
position: absolute;
top: -11px;
right: -31px;
color: #fff;
font-weight: bold;
}
/* LOCK */
.lock{
margin-top: 2px;
position: relative;
width: 20px;
height: 22px;
border: 2px solid #fff;
border-radius: 5px;
}
.lock:before{
content: "";
position: absolute;
top: -10px;
left: 3px;
width: 10px;
height: 6px;
border-radius: 100% 100% 0 0;
border: 2px solid #fff;
border-bottom-color: transparent;
}
.lock:after{
content: "";
position: absolute;
width: 3px;
height: 3px;
border-radius: 100%;
background-color: #fff;
left: 8.5px;
bottom: 6px;
}
/* LOCK UNLOCKED */
.unlocked{
margin-top: 2px;
position: relative;
width: 20px;
height: 22px;
border: 2px solid #fff;
border-radius: 5px;
}
.unlocked:before{
content: "";
position: absolute;
top: -10px;
right: 3px;
width: 10px;
height: 6px;
border-radius: 100% 100% 0 0;
border: 2px solid #fff;
border-bottom-color: transparent;
border-right-color: transparent;
}
.unlocked:after{
content: "";
position: absolute;
width: 3px;
height: 3px;
border-radius: 100%;
background-color: #fff;
left: 8.5px;
bottom: 6px;
}
/* CLOUD */
.cloud{
margin-top: 8px;
position: relative;
width: 35px;
height: 20px;
border-radius: 100% 100% 60% 70%;
background-color: #fff;
}
.cloud:before{
content: "";
position: absolute;
left: 4px;
top: -4px;
width: 12px;
height: 8px;
background-color: #fff;
border-radius: 100% 100% 10% 10%;
}
.cloud:after{
content: "";
position: absolute;
right: 6px;
top: -7px;
width: 18px;
height: 16px;
background-color: #fff;
border-radius: 100%;
}
/* RAIN */
.rain{
margin-top: 5px;
position: relative;
width: 25px;
height: 25px;
background-color: #fff;
border-radius: 100%;
}
.rain:before{
content: "";
position: absolute;
top: -9px;
left: 1.75px;
width: 0;
height: 0;
border-bottom: 16px solid #fff;
border-left: 11px solid transparent;
border-right: 11px solid transparent;
border-radius: 100%;
}
/* ALERT */
.alert{
margin-top: -4px;
position: relative;
width: 22px;
height: 25px;
border-radius: 100% 100% 0 0;
border: 2px solid #fff;
border-bottom-color: transparent;
}
.alert:after{
content: "";
position: absolute;
bottom: -4px;
left: -6px;
width: 34px;
height: 2px;
background-color: #fff;
}
.alert:before{
content: "";
position: absolute;
bottom: -9px;
left: 1.5px;
width: 15px;
height: 15px;
border-radius: 100%;
border: 2px solid transparent;
border-bottom-color: #fff;
}
/* TIMER */
.timer{
position: relative;
width: 0;
height: 0;
border-top: 15px solid #fff;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.timer:after{
content: "";
position: absolute;
left: -15px;
top: -3px;
width: 0;
height: 0;
border-bottom: 15px solid #fff;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.timer:before{
content: "";
position: absolute;
left: -6px;
top: 3px;
width: 0;
height: 0;
border-bottom: 6px solid #2c3e50;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
z-index: 400;
}
/* PENCIL */
.pencil{
position: relative;
width: 8px;
height: 23px;
background-color: #fff;
-webkit-transform: rotate(-35deg);
-ms-transform: rotate(-35deg);
-o-transform: rotate(-35deg);
transform: rotate(-35deg);
}
.pencil:before{
content: "";
position: absolute;
left: 0;
bottom: -6px;
width: 0;
height: 0;
border-top: 6px solid #fff;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
}
.pencil:after{
content: "";
position: absolute;
left: 0;
top: -6px;
width: 8px;
height: 4px;
background-color: #fff;
}
/* CALENDAR */
.calendar{
position: relative;
width: 28px;
height: 18px;
border: 2px solid #fff;
border-top-width: 5px;
}
.calendar:before{
content: "";
position: absolute;
top: -9px;
left: 3px;
width: 18px;
height: 8px;
border: 2px solid #fff;
border-top-color: transparent;
border-bottom-color: transparent;
}
/* CALENDAR NUMBER */
.calendarnumber{
position: relative;
width: 28px;
height: 18px;
border: 2px solid #fff;
border-top-width: 5px;
}
.calendarnumber:before{
content: "";
position: absolute;
top: -9px;
left: 3px;
width: 18px;
height: 8px;
border: 2px solid #fff;
border-top-color: transparent;
border-bottom-color: transparent;
}
.calendarnumber:after{
content: "23";
position: absolute;
top: 1px;
left: 7.5px;
color: #fff;
font-weight: bold;
font-size: 11px;
}
/* TAG */
.tag{
position: relative;
width: 12px;
height: 25px;
background-color: #fff;
-webkit-transform: rotate(-30deg);
-ms-transform: rotate(-30deg);
-o-transform: rotate(-30deg);
transform: rotate(-30deg);
}
.tag:after{
content: "";
position: absolute;
top: -6px;
left: 0;
width: 0;
height: 0;
border-bottom: 6px solid #fff;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
}
.tag:before{
content: "";
position: absolute;
top: -1px;
left: 4.5px;
width: 3px;
height: 3px;
background-color: #2c3e50;
border-radius: 100%;
z-index: 500;
}
/* PLAY VIDEO */
.playvideo{
width: 0;
height: 0;
border-left: 25px solid #fff;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
}
/* STOP VIDEO */
.stopvideo{
width: 26px;
height: 26px;
background-color: #fff;
}
/* PAUSE VIDEO */
.pausevideo{
position: relative;
width: 10px;
height: 25px;
background-color: #fff;
}
.pausevideo:after{
content: "";
position: absolute;
top: 0;
left: 15px;
width: 10px;
height: 25px;
background-color: #fff;
}
/* BACK VIDEO */
.backvideo{
position: relative;
width: 0;
height: 0;
border-right: 15px solid #fff;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
}
.backvideo:after{
content: "";
position: absolute;
left: -15px;
top: -15px;
width: 0;
height: 0;
border-right: 15px solid #fff;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
}
/* FORWARD VIDEO */
.forwardvideo{
position: relative;
width: 0;
height: 0;
border-left: 15px solid #fff;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
}
.forwardvideo:after{
content: "";
position: absolute;
left: -30px;
top: -15px;
width: 0;
height: 0;
border-left: 15px solid #fff;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
}
/* CURSOR */
.cursor{
margin-top: 5px;
position: relative;
width: 0;
height: 0;
border-bottom: 15px solid #fff;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
-webkit-transform: rotate(-30deg);
-ms-transform: rotate(-30deg);
-o-transform: rotate(-30deg);
transform: rotate(-30deg);
}
.cursor:after{
content: "";
position: absolute;
left: -1.5px;
top: 15px;
width: 3px;
height: 10px;
background-color: #fff;
}
/* CAMERA */
.camera{
position: relative;
width: 35px;
height: 25px;
background-color: #fff;
border-radius: 5px;
}
.camera:before{
content: "";
position: absolute;
top: -2px;
left: 5px;
width: 8px;
height: 2px;
background-color: #fff;
}
.camera:after{
content: "";
position: absolute;
left: 12.5px;
top: 7.5px;
width: 10px;
height: 10px;
border-radius: 100%;
background-color: #2c3e50;
}
/* ENVELOPE */
.envelope{
position: relative;
width: 35px;
height: 25px;
background-color: #fff;
border-radius: 5px;
}
.envelope:after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-top: 17.5px solid #aaa;
border-left: 17.5px solid transparent;
border-right: 17.5px solid transparent;
border-radius: 15%;
}
/* ENVELOPE OUTLINE */
.envelopeoutline{
position: relative;
width: 31px;
height: 21px;
border: 2px solid #fff;
border-radius: 5px;
}
.envelopeoutline:before{
content: "";
position: absolute;
left: 0px;
top: 0px;
width: 2px;
height: 21px;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: top left;
-moz-transform-origin: top left;
-ms-transform-origin: top left;
-o-transform-origin: top left;
transform-origin: top left;
}
.envelopeoutline:after{
content: "";
position: absolute;
right: 0px;
top: 0px;
width: 2px;
height: 21px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: top left;
-moz-transform-origin: top left;
-ms-transform-origin: top left;
-o-transform-origin: top left;
transform-origin: top left;
}
/* CLIPBOARD */
.clipboard{
position: relative;
width: 18px;
height: 23px;
border: 2px solid #fff;
}
.clipboard:after{
content: "";
position: absolute;
top: -6px;
left: 2px;
width: 10px;
height: 2px;
border: 2px solid #fff;
border-bottom-color: transparent;
border-radius: 5px 5px 0 0;
}
/* DOWNLOAD */
.download{
margin-top: 10px;
position: relative;
width: 28px;
height: 10px;
border: 2px solid #fff;
border-top-color: transparent;
}
.download:before{
content: "";
position: absolute;
top: -10px;
left: 13px;
width: 2px;
height: 10px;
background-color: #fff;
}
.download:after{
content: "";
position: absolute;
top: 0px;
left: 9px;
width: 0px;
height: 0px;
border-top: 5px solid #fff;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
/* UPLOAD */
.upload{
margin-top: 10px;
position: relative;
width: 28px;
height: 10px;
border: 2px solid #fff;
border-top-color: transparent;
}
.upload:before{
content: "";
position: absolute;
top: -5px;
left: 13px;
width: 2px;
height: 10px;
background-color: #fff;
}
.upload:after{
content: "";
position: absolute;
top: -10px;
left: 9px;
width: 0px;
height: 0px;
border-bottom: 5px solid #fff;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
/* TOGGLE */
.toggle{
position: relative;
width: 30px;
height: 15px;
border-radius: 10px;
border: 2px solid #fff;
}
.toggle:after{
content: "";
position: absolute;
top: 4px;
left: 4px;
width: 7px;
height: 7px;
background-color: #fff;
border-radius: 100%;
}
/* BROWSER */
.browser{
position: relative;
width: 30px;
height: 18px;
border: 2px solid #fff;
border-top-color: transparent;
border-radius: 0 0 5px 5px;
}
.browser:after{
content: "";
position: absolute;
top: -10px;
left: -2px;
width: 30px;
height: 6px;
border: 2px solid #fff;
border-radius: 5px 5px 0 0;
}
.browser:before{
content: "...";
position: absolute;
top: -21px;
left: 1px;
color: #fff;
}
/* TENNIS */
.tennis{
margin-top: -8px;
position: relative;
width: 28px;
height: 28px;
border-radius: 100%;
border: 2px solid #fff;
overflow: hidden;
}
.tennis:before{
content: "";
position: absolute;
top: -14px;
left: -18px;
width: 28px;
height: 28px;
border-radius: 100%;
border: 2px solid #fff;
}
.tennis:after{
content: "";
position: absolute;
bottom: -14px;
right: -18px;
width: 28px;
height: 28px;
border-radius: 100%;
border: 2px solid #fff;
}
/* SIGNAL FULL */
.signalfull{
position: relative;
width: 6px;
height: 15px;
border: 2px solid #fff;
background-color: #fff;
}
.signalfull:before{
content: "";
position: absolute;
bottom: -2px;
left: -14px;
width: 6px;
height: 22px;
border: 2px solid #fff;
background-color: #fff;
}
.signalfull:after{
content: "";
position: absolute;
bottom: -2px;
left: 10px;
width: 6px;
height: 6px;
border: 2px solid #fff;
background-color: #fff;
}
/* SIGNAL TWO */
.signaltwo{
position: relative;
width: 6px;
height: 15px;
border: 2px solid #fff;
background-color: #fff;
}
.signaltwo:before{
content: "";
position: absolute;
bottom: -2px;
left: -14px;
width: 6px;
height: 22px;
border: 2px solid #fff;
}
.signaltwo:after{
content: "";
position: absolute;
bottom: -2px;
left: 10px;
width: 6px;
height: 6px;
border: 2px solid #fff;
background-color: #fff;
}
/* SIGNAL ONE */
.signalone{
position: relative;
width: 6px;
height: 15px;
border: 2px solid #fff;
}
.signalone:before{
content: "";
position: absolute;
bottom: -2px;
left: -14px;
width: 6px;
height: 22px;
border: 2px solid #fff;
}
.signalone:after{
content: "";
position: absolute;
bottom: -2px;
left: 10px;
width: 6px;
height: 6px;
border: 2px solid #fff;
background-color: #fff;
}
/* FLAG SQUARE */
.flagsquare{
position: relative;
width: 2px;
height: 25px;
background-color: #fff;
}
.flagsquare:after{
content: "";
position: absolute;
top: 0;
left: 2px;
width: 15px;
height: 12px;
background-color: #fff;
}
/* FLAG TRIANGLE */
.flagtriangle{
position: relative;
width: 2px;
height: 25px;
background-color: #fff;
}
.flagtriangle:after{
content: "";
position: absolute;
top: 0;
left: 2px;
width: 0px;
height: 0px;
border-left: 15px solid #fff;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
}
/* WARNING */
.warning{
position: relative;
width: 0px;
height: 0px;
border-bottom: 25px solid #fff;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
}
.warning:after{
content: "!";
position: absolute;
left: -2.5px;
top: 1px;
color: #2c3e50;
font-weight: bold;
font-size: 20px;
}
/* COPY */
.copy{
margin-top: -2px;
position: relative;
width: 20px;
height: 20px;
border: 2px solid #fff;
border-radius: 2px;
}
.copy:after{
content: "";
position: absolute;
top: 3px;
left: 3px;
width: 20px;
height: 20px;
border: 2px solid #fff;
border-radius: 2px;
}
/* UP ARROW */
.uparrow{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
}
.uparrow:after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: top left;
-moz-transform-origin: top left;
-ms-transform-origin: top left;
-o-transform-origin: top left;
transform-origin: top left;
}
.uparrow:before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: top right;
-moz-transform-origin: top right;
-ms-transform-origin: top right;
-o-transform-origin: top right;
transform-origin: top right;
}
/* DOWN ARROW */
.downarrow{
position: relative;
width: 2px;
height: 30px;
background-color: #fff;
}
.downarrow:after{
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: bottom left;
-moz-transform-origin: bottom left;
-ms-transform-origin: bottom left;
-o-transform-origin: bottom left;
transform-origin: bottom left;
}
.downarrow:before{
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: bottom right;
-moz-transform-origin: bottom right;
-ms-transform-origin: bottom right;
-o-transform-origin: bottom right;
transform-origin: bottom right;
}
/* LEFT ARROW */
.leftarrow{
margin-top: 5px;
position: relative;
width: 30px;
height: 2px;
background-color: #fff;
}
.leftarrow:after{
content: "";
position: absolute;
bottom: 2px;
left: 0px;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: bottom left;
-moz-transform-origin: bottom left;
-ms-transform-origin: bottom left;
-o-transform-origin: bottom left;
transform-origin: bottom left;
}
.leftarrow:before{
content: "";
position: absolute;
top: 0.5px;
left: 0px;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: top right;
-moz-transform-origin: top right;
-ms-transform-origin: top right;
-o-transform-origin: top right;
transform-origin: top right;
}
/* RIGHT ARROW */
.rightarrow{
margin-top: 5px;
position: relative;
width: 30px;
height: 2px;
background-color: #fff;
}
.rightarrow:after{
content: "";
position: absolute;
bottom: 1px;
right: -0.5px;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: bottom left;
-moz-transform-origin: bottom left;
-ms-transform-origin: bottom left;
-o-transform-origin: bottom left;
transform-origin: bottom left;
}
.rightarrow:before{
content: "";
position: absolute;
top: 2px;
right: 0px;
width: 2px;
height: 10px;
background-color: #fff;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: top right;
-moz-transform-origin: top right;
-ms-transform-origin: top right;
-o-transform-origin: top right;
transform-origin: top right;
}
/* MUSIC */
.music{
position: relative;
width: 16px;
height: 14px;
border: 2px solid #fff;
border-bottom-color: transparent;
-webkit-transform: skew(-5deg);
-ms-transform: skew(-5deg);
-o-transform: skew(-5deg);
transform: skew(-5deg);
}
.music:after{
content: "";
position: absolute;
bottom: -3px;
left: -10px;
width: 10px;
height: 6px;
border-radius: 100%;
background-color: #fff;
-webkit-transform: skew(5deg);
-ms-transform: skew(5deg);
-o-transform: skew(5deg);
transform: skew(5deg);
}
.music:before{
content: "";
position: absolute;
bottom: -3px;
right: -3px;
width: 10px;
height: 6px;
border-radius: 100%;
background-color: #fff;
-webkit-transform: skew(5deg);
-ms-transform: skew(5deg);
-o-transform: skew(5deg);
transform: skew(5deg);
}
/* UMBERELLA */
.umberella{
position: relative;
width: 24px;
height: 12px;
background-color: #fff;
border-radius: 100% 100% 20% 20%;
}
.umberella:after{
content: "";
position: absolute;
bottom: -10px;
left: 11px;
width: 2px;
height: 24px;
background-color: #fff;
}
.umberella:before{
content: "";
position: absolute;
bottom: -12px;
right: 5px;
width: 6px;
height: 10px;
border-radius: 100%;
border: 2px solid transparent;
border-bottom-color: #fff;
}
/* EARPHONES */
.earphones{
position: relative;
width: 25px;
height: 25px;
border-radius: 100%;
border: 2px solid #fff;
border-bottom-color: transparent;
}
.earphones:before{
content: "";
position: absolute;
left: 1px;
bottom: 0px;
width: 5px;
height: 10px;
background-color: #fff;
border-radius: 5px;
}
.earphones:after{
content: "";
position: absolute;
right: 1px;
bottom: 0px;
width: 5px;
height: 10px;
background-color: #fff;
border-radius: 5px;
}
/* LIGHT BULB */
.lightbulb{
position: relative;
width: 20px;
height: 20px;
border-radius: 100%;
background-color: #fff;
}
.lightbulb:after{
content: "";
position: absolute;
left: 4px;
bottom: -5px;
width: 12px;
height: 10px;
background-color: #fff;
}
.lightbulb:before{
content: "";
position: absolute;
left: 2px;
bottom: -11px;
width: 12px;
height: 10px;
border-radius: 100%;
border: 2px solid transparent;
border-bottom-color: #fff;
}
Also see: Tab Triggers