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 Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
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">
<h1 class="relief">đđ¨đĢđđĄđđđđĄ'đŦ<i class="abcdefg fab fa-css3"></i>đđđ <i class="abcdefg fas fa-mouse"></i>đđŽđđđ¨đ§ đđĢđ <br>
#đšđđ - Justice For George Floyd</h1>
<div class="page">
<a href="#" class="dreg ">Dreg Button Cup</a>
<a href="#" class="blue_button other_styles"> Blue Button Hebrew </a>
<a href="#" class="silver_button other_styles"> Silver Button Israelite </a>
<a href="#" class="gold_button other_styles"> Gold Button David </a>
<a href="#" class="douay_rheims_version other_styles">
Royal <span class="valor">Button Maccabee</span> </a>
<a href="#" class="emerald_timeline other_styles">
<span>đđđđ
đđđ đŠđđđđđ đģđđđđđđđ</span> </a>
<a href="#" class="second_ezra other_styles">
<span>White Button Ezra </span> </a>
<a href="#" class="hoshea other_styles">
<span>Righteous Button Hoshea </span> </a>
<a href="#" class="nazarite other_styles" title="this has a transparent background">
<span>Blood Button Nazarite </span> </a>
<a href="#" class="timothy_new_testament other_styles">
<span>Beryl Button Timothy </span> </a>
<a href="#" class="sapphire other_styles">Sappir Button BLB</a>
<a href="#" class="elevation other_styles">
<span class="gettin_fancy">EL ↑</span> <span>evation Button Avram </span>
</a>
<a href="#" class="confectionaries other_styles">
Solomon Button confectionaries </a>
<a href="#" class="iron_fe other_styles">
<sup>F<span style="text-transform:lowercase;"> e </span> +
</sup> Iron Button Joshuwa
</a>
<a href="#" class="sardius other_styles">
Sardius Button stone </a>
<a href="#" class="hezekiah other_styles">
Fig Button Hezekiah <span class="figs">H<img src="https://i.pinimg.com/originals/38/dc/fd/38dcfd2af1eb46dd5c61acf79acd2661.png" alt="Hebrew image" /></span> </a>
<a href="#" class="porter other_styles"> Temple Button Porter </a>
<span id="vessel">
<span id="vessel_body">
<a href="#">
<span id="vessel_item">
Temple Button Vessels
</span>
</a>
</span>
</span>
<a href="#" class="precious other_styles"> Sardius Button Precious </a>
<a href="#" class="onyx other_styles"> Onyx Button Royal </a>
<a href="#" class="peral other_styles"> Pearl Button Gates </a>
<a href="#" class="olive other_styles"> Olive Button Herb </a>
<a href="#" class="scribe other_styles"> Scribe Button Verse </a>
<a href="#" class="herb other_styles">Green Button EZ Blu </a>
<a href="#" class="heaven other_styles"> Heavens Button Shemiyyim </a>
</div>
<!-- yes, right here is the.. end of page div of position of buttons for show and displaying-->
</div>
html {
background-color: #031d2f; /* global 90%+ browsers support */
background: conic-gradient(
from 90deg at 50% 50%,
rgba(3, 29, 47, 1) 0%,
rgba(83, 0, 212, 1) 50%,
rgba(3, 29, 47, 1) 99%
);
}
html:hover {
background-color: #00001d;
-webkit-transition-delay: 12s;
}
html:hover .other_styles,
h1 .abcdefg {
-webkit-transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/*begin styles and positioning*/
.container {
display: inline;
overflow: hidden;
}
.page {
position: relative;
display: flex;
margin: 40px auto;
flex-wrap: wrap;
justify-content: space-between;
align-content: space-between;
width: 600px;
height: 800px;
}
.relief {
color: #e0eff2;
font: italic bold 24px Georgia, Serif;
text-shadow: -4px 3px 0 #3a50d9, -14px 7px 0 #5c1855;
}
h1 {
margin: 0 auto;
height: 30px;
text-align: center;
border-top: 6px double black;
width: 540px;
overflow: hidden;
padding-top: 12px;
transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
}
.container:hover h1 {
height: 60px;
text-shadow: -4px 3px 0 #3a50d9, -14px 7px 0 #0a0e27;
}
h1 .abcdefg {
opacity: 0;
font-size: 0.2em;
color: #5f7dd985;
margin-left: 2px;
}
h1:hover .abcdefg {
opacity: 1;
margin-right: 0.5px;
font-size: 2rem;
}
h1 .fa-css3 {
color: #ecbf0f;
}
h1:hover .fa-css3 {
margin-left: 12px;
}
a {
text-decoration: none;
}
/* other styles and position */
.other_styles {
padding: 12px;
border-radius: 0.4em;
font-family: "Helvetica Neue", Arial, sans-serif;
min-height: 20px;
max-height: 40px;
}
/* bold anything */
.valor {
font-weight: bold;
}
/* END END END OF bold anything */
/*
end of other styles and position
*/
.dreg {
padding: 0 10px;
height: 28px;
line-height: 28px;
font-size: 15px;
text-decoration: none;
font-family: "Arial", Helvetica, sans-serif;
background: transparent -moz-linear-gradient(
center top,
#77b947 2%,
#77b947 3%,
#72b640,
#6caf3a,
#67aa35,
#68a934
) repeat scroll 0 0;
background: transparent -webkit-linear-gradient(
center top,
#77b947 2%,
#77b947 3%,
#72b640,
#6caf3a,
#67aa35,
#68a934
) repeat scroll 0 0;
border: 1px solid #6f9b4c;
text-align: center;
display: inline-block;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 0 #416a21;
border-radius: 3px;
}
.dreg:hover {
color: #fff;
text-decoration: none;
text-shadow: 0 -1px 0 #416a21;
box-shadow: 0 0 5px #c1e4a7;
border: 1px solid #5a7e3e;
}
.blue_button {
text-shadow: 0 -1px 0 #06c;
background-color: #06c;
border-color: #0040a5;
background-size: 100% auto;
background-image: linear-gradient(#09f, #06c);
color: #fff;
font-weight: bold;
cursor: pointer;
font-size: 14px;
line-height: 18px;
font-family: "Helvetica Neue", Arial, sans-serif;
}
.blue_button:hover {
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset,
0 1px 0 rgba(44, 255, 255, 0.5);
text-align: center;
white-space: nowrap;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
color: #90d5ec;
background-color: #0040a5;
background-size: 100% auto;
background-image: linear-gradient(#06c, #0040a5);
text-shadow: 0 -1px 0 #06c;
}
.silver_button {
font-size: 20px;
font-weight: bold;
border: 1px solid white;
}
.silver_button:hover {
cursor: pointer;
color: #005ed6;
border-color: #ccc;
background-color: #fefefe;
background-size: 100% auto;
background-image: linear-gradient(#fefefe, #f3f3f3);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.gold_button {
color: #a85400;
font-weight: bold;
background-size: 100% auto;
background-image: linear-gradient(#ffcd07, #e19b16);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5),
0 1px 0 rgba(255, 255, 255, 0.8) inset;
cursor: pointer;
font-size: 14px;
font-family: "Helvetica Neue", Arial, sans-serif;
border: 1px solid #bbb;
border-color: #e19b16;
border-radius: 3.01px;
margin: 0;
/*
adjust to your settings, i changed this to auto because it affected the "other_styles"
*/
width: auto;
height: auto;
/* end end end of
adjust to your settings, i changed this to auto because it affected the "other_styles"
*/
text-align: center;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
white-space: nowrap;
vertical-align: middle;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.gold_button:hover {
border-radius: 3.01px;
color: #fff;
font-size: 13px;
background-size: 100% auto;
background-image: linear-gradient(#ffcd07, #e19b16);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5),
0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.douay_rheims_version {
background-color: #13a0d8;
border-radius: 7px;
font-weight: 400;
cursor: pointer;
}
.douay_rheims_version::first-letter {
font-weight: bold;
}
.douay_rheims_version:hover {
line-height: 1.7rem;
background-color: #000;
color: #fff;
}
.emerald_timeline {
color: #25802f;
text-shadow: 1px 1px 0 #19ff1a, -1px -1px 0 #19ff1a;
padding: 1em 30px;
border-radius: 3px;
/* ff 3.6+ */
background: -moz-linear-gradient(
90deg,
rgba(39, 151, 7, 1) 0%,
rgba(18, 193, 20, 1) 50%,
rgba(18, 193, 20, 1) 99%
);
/* safari 5.1+,chrome 10+ */
background: -webkit-linear-gradient(
90deg,
rgba(39, 151, 7, 1) 0%,
rgba(18, 193, 20, 1) 50%,
rgba(18, 193, 20, 1) 99%
);
/* opera 11.10+ */
background: -o-linear-gradient(
90deg,
rgba(39, 151, 7, 1) 0%,
rgba(18, 193, 20, 1) 50%,
rgba(18, 193, 20, 1) 99%
);
/* ie 6-9 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#12C114', endColorstr='#8AF43C', GradientType=0 );
/* ie 10+ */
background: -ms-linear-gradient(
90deg,
rgba(39, 151, 7, 1) 0%,
rgba(18, 193, 20, 1) 50%,
rgba(18, 193, 20, 1) 99%
);
/* global 94%+ browsers support */
background: linear-gradient(
90deg,
rgba(39, 151, 7, 1) 0%,
rgba(18, 193, 20, 1) 50%,
rgba(18, 193, 20, 1) 99%
);
}
.emerald_timeline:hover {
border-color: #afdd99;
background: #c4f1bd;
color: #000;
text-shadow: 0 1px 0 #fff;
}
.second_ezra {
color: #1b1b1b;
font-size: 14px;
font-weight: 900;
text-transform: uppercase;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.6),
0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
border-radius: 3px;
border: 1px solid #c2c2c2;
min-width: 75px;
background: #f5f5f5;
background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%);
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, #f5f5f5),
color-stop(100%, #dfdfdf)
);
background: -webkit-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%);
background: -o-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%);
background: -ms-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%);
background: linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%);
}
.second_ezra:hover {
color: #cacaca;
text-shadow: 0 2px 0 #fff, 0 1px 0 #999;
background: #fefefe;
background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%);
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, #fefefe),
color-stop(100%, #e8e8e8)
);
background: -webkit-linear-gradient(top, #fefefe 0%, #e8e8e8 100%);
background: -o-linear-gradient(top, #fefefe 0%, #e8e8e8 100%);
background: -ms-linear-gradient(top, #fefefe 0%, #e8e8e8 100%);
background: linear-gradient(top, #fefefe 0%, #e8e8e8 100%);
border: 1px solid #c2c2c2;
}
.hoshea {
background: #608cbc;
border: 0;
color: #fff;
font-family: "OpenSans", Arial, Helvetica, sans-serif;
font-weight: normal;
text-transform: uppercase;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 2px 0 #3f5d84;
-moz-box-shadow: 0 2px 0 #3f5d84;
box-shadow: 0 2px 0 #3f5d84;
-webkit-transition: all 0.35s ease 0s;
-moz-transition: all 0.35s ease 0s;
transition: all 0.35s ease 0s;
}
.hoshea:hover {
text-shadow: 1px 1px 0 #999;
background: #88bdf0;
box-shadow: 0 2px 0 #eee;
}
.nazarite {
color: #fff;
border-color: #a50508;
background: #ea050b;
background-image: -webkit-linear-gradient(
#ff2000 2%,
#ea050b 10%,
#d40d04 100%
);
background-image: -moz-linear-gradient(
#ff2000 2%,
#ea050b 10%,
#d40d04 100%
);
background-image: linear-gradient(#ff2000 2%, #ea050b 10%, #d40d04 100%);
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
text-shadow: 0 -1px 0 #760400;
-webkit-transition: all 0.35s ease 0s;
-moz-transition: all 0.35s ease 0s;
transition: all 0.35s ease 0s;
}
.nazarite:hover {
color: #3b65a7;
text-decoration: none;
text-shadow: none;
background: #7e0801;
background: rgba(109, 10, 0, 0.5);
-webkit-box-shadow: inset 0 1px 0 #7b0000, 0 1px 0 #c33f01;
box-shadow: inset 0 1px 0 #7b0000, 0 1px 0 #c33f01;
}
.timothy_new_testament {
height: 60px;
line-height: 40px;
display: inline-block;
vertical-align: top;
border-radius: 3px;
text-align: center;
font-size: 14px;
color: #fff;
padding: 0 20px;
background-image: linear-gradient(to bottom, #16ba8b, #047454);
}
.timothy_new_testament:hover {
background-image: linear-gradient(to bottom, #084533, #084533);
}
.timothy_new_testament:active {
background-image: linear-gradient(to bottom, #16ba8b, #16ba8b);
}
.sapphire {
border: solid #91a6c3 1px;
text-align: center;
vertical-align: middle;
border-radius: 3px;
font-weight: bold;
background-color: #bbcada;
color: #546b7e;
text-shadow: -1px 0px 1px #570acd;
}
.sapphire:hover {
background-color: #52627c;
color: #e9eef1;
border-color: #355488;
border: solid #91a6c3 1px;
text-shadow: none;
}
.sapphire:active {
color: #506373;
background-color: #e4eaee;
border: solid #c5d2e0 1px;
}
.elevation {
color: #514e21;
font-weight: bold;
background-color: #e2dfb1;
text-align: center;
border: solid #969259 1px;
border-radius: 3px;
border-bottom: 2px solid #50a578;
border-left: 1px solid #50a578;
}
.elevation:hover {
color: #fffef6;
background-color: #bfbb82;
position: relative;
text-shadow: 0 01px 01px #666;
text-decoration: none;
box-shadow: 001px 1px 01px #fff inset;
border-left: 1px solid #50a578;
border-bottom: 2px solid #fff;
}
.elevation:hover .gettin_fancy {
color: rgb(192, 1, 1);
}
.confectionaries {
display: block;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 2px 20px;
font-weight: bold;
text-transform: uppercase;
line-height: 1.5rem;
color: #fff;
text-shadow: 0 1px 1px #333;
max-width: 200px;
text-align: center;
background-color: #5c5c5c;
background-image: -moz-linear-gradient(top, #666666, #4d4d4d);
background-image: -ms-linear-gradient(top, #666666, #4d4d4d);
background-image: -webkit-gradient(
linear,
0 0,
0 100%,
from(#666),
to(#4d4d4d)
);
background-image: -webkit-linear-gradient(top, #666, #4d4d4d);
background-image: -o-linear-gradient(top, #666666, #4d4d4d);
background-image: linear-gradient(top, #666666, #4d4d4d);
background-repeat: repeat-x;
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#4d4d4d', GradientType=0);
-webkit-box-shadow: inset 0 0 1px #000,
inset 0 1px 0 1px rgba(255, 255, 255, 0.2),
0 1px 1px -1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: inset 0 0 1px #000,
inset 0 1px 0 1px rgba(255, 255, 255, 0.2),
0 1px 1px -1px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 0 1px #000, inset 0 1px 0 1px rgba(255, 255, 255, 0.2),
0 1px 1px -1px rgba(0, 0, 0, 0.5);
}
.confectionaries:hover {
background-color: #000;
background-image: -webkit-linear-gradient(top, #6b6bca, #151528);
background-image: -o-linear-gradient(top, #6b6bca, #151528);
background-image: -moz-linear-gradient(top, #6b6bca, #151528);
background-image: linear-gradient(top, #6b6bca, #151528);
background-repeat: repeat-x;
}
.iron_fe {
position: relative;
width: 244px;
height: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 16px;
line-height: 16px;
font-family: Verdana, "PT Serif", serif;
font-weight: normal;
text-decoration: none;
text-transform: uppercase;
color: #6d6b6b;
border-radius: 0.1em 0.5em 0.1em 1.3em;
border-left: 6px solid #e90608;
padding: 12px 10px;
background-image: -webkit-gradient(
linear,
top,
bottom,
color-stop(0, #fffefe),
color-stop(1, #faf2f0)
);
background-image: -ms-linear-gradient(top, #fffefe, #faf2f0);
background-image: -o-linear-gradient(top, #fffefe, #faf2f0);
background-image: -moz-linear-gradient(top, #fffefe, #faf2f0);
background-image: -webkit-linear-gradient(top, #fffefe, #faf2f0);
background-image: linear-gradient(to bottom, #fffefe, #faf2f0);
border-top: 1px solid #f9f9f9;
-webkit-box-shadow: 1px 1px 3px 1px #dadada;
box-shadow: 1px 1px 3px 1px #dadada;
}
.iron_fe:hover {
color: #e60708;
text-decoration: none;
font-family: "Gentium Book Basic", serif;
font-weight: bold;
}
.iron_fe sup {
position: relative;
top: -05px;
margin-right: -16px;
-webkit-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.iron_fe:hover sup {
color: #fff;
text-shadow: 3px 12px 0 #000;
font-size: 18px;
background-image: url(http://hilfe.strongholdkingdoms.de/images/7/7f/Icon_swords.PNG);
padding: 24px;
left: 0;
margin-right: -22px;
margin-left: -16px;
background-repeat: no-repeat;
background-position: right bottom;
background-size: 44px 64px;
border-radius: 0 0.3em;
}
.sardius {
background: #fca13f;
-webkit-border-radius: 2px;
border-radius: 2px;
text-transform: capitalize;
color: #fff;
cursor: pointer;
font-weight: 700;
line-height: 1;
text-decoration: none;
text-align: center;
box-shadow: -3px 2px 0px #714517, 02px 02px 0px #93693c;
-webkit-box-shadow: 0 rgba(255, 255, 255, 0.5) inset;
box-shadow: 0 rgba(255, 255, 255, 0.5) inset;
-webkit-transition: background-color 300ms ease-out;
-moz-transition: background-color 300ms ease-out;
transition: background-color 300ms ease-out;
}
.sardius:hover {
background: #fb8d17;
}
.hezekiah {
position: relative;
color: #bfb0a3;
text-shadow: 01px 01px 0 #fff;
text-align: center;
text-decoration: none;
line-height: 40px;
padding: 0 15px;
background-color: #eee2d8;
transition: color 0.35s;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
width: 154px;
}
.hezekiah:hover {
-webkit-box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
-moz-box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
box-shadow: 0 2px 0px rgba(255, 255, 255, 0.7);
background-color: #bfb0a3;
color: #fff;
text-shadow: 01px 01px 0 #aaa;
}
.hezekiah:active {
color: #723a3a;
}
.hezekiah:hover .figs {
opacity: 1;
}
.figs {
text-align: center;
position: absolute;
top: -2px;
right: -8px;
color: #fff;
text-shadow: 01px 01px 0 #555;
background-color: #8b735e;
font-size: 14px;
font-weight: bold;
line-height: 22px;
height: 22px;
width: 22px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 30%;
-webkit-transition: opacity 0.2s;
-moz-transition: opacity 0.2s;
transition: opacity 0.2s;
-webkit-transition-timing-function: ease-in;
-moz-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
.figs img {
position: relative;
top: -18px;
left: 0;
opacity: 0.1;
width: 24px;
-webkit-transition: all 600ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
transition: all 600ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.figs img:hover {
position: relative;
top: -30px;
left: -05px;
opacity: 0.9;
width: 36px;
}
.porter {
font-family: "Arimo", sans-serif;
border: 2px solid #92ad4f;
border-radius: 6px;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
color: #637a27;
text-decoration: none;
text-transform: uppercase;
}
.porter:hover {
background: #444540;
color: #fff;
border: 2px solid #555;
}
/*
vessel Gold ; Button CSS
*/
/*vessel*/
#vessel {
box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0 0 inset;
box-sizing: border-box;
color: rgb(17, 17, 17);
cursor: pointer;
display: block;
height: 29px;
position: relative;
text-align: center;
width: 198px;
perspective-origin: 99px 14.5px;
transform-origin: 99px 14.5px;
background: #000;
background: rgba(0, 0, 0, 0)
linear-gradient(rgb(247, 223, 165), rgb(240, 193, 75)) repeat scroll 0 0 /
auto padding-box border-box;
border: 0 none rgb(17, 17, 17);
border-radius: 2px 2px 2px 2px;
font: normal normal normal normal 13px/19px Arial, sans-serif;
outline: rgb(17, 17, 17) none 0;
overflow: hidden;
border-top: 1px solid rgb(168, 135, 52);
border-right: 1px solid rgb(156, 126, 49);
border-left: 1px solid rgb(156, 126, 49);
}
/*vessel_body*/
#vessel_body {
box-sizing: border-box;
color: rgb(17, 17, 17);
cursor: pointer;
display: block;
height: 25px;
left: 2px;
position: absolute;
text-align: center;
top: 2px;
width: 28px;
align-self: stretch;
perspective-origin: 12.5px 12.5px;
transform-origin: 12.5px 12.5px;
background-image: url(http://icons.iconarchive.com/icons/mozco/animals/32/Lion-2-icon.png);
background-size: 24px;
background-repeat: no-repeat;
background-position: left top;
}
/* vessel_item*/
#vessel_item {
text-decoration: none;
box-sizing: border-box;
color: rgb(17, 17, 17);
cursor: pointer;
display: block;
height: 29px;
position: relative;
text-align: center;
white-space: nowrap;
width: 198px;
z-index: 10;
perspective-origin: 99px 14.5px;
transform-origin: 99px 14.5px;
border: 0 none rgb(17, 17, 17);
font: normal normal normal normal 13px/29px Arial, sans-serif;
outline: rgb(17, 17, 17) none 0;
padding: 0 10px 0 35px;
}
/* vessel_item*/
#vessel a {
text-decoration: none;
}
/*sardius precious stone button*/
.precious {
text-transform: uppercase;
font-family: "Whitney SSm A";
font-weight: 400;
font-size: 13px;
color: #fff;
letter-spacing: 1px;
text-decoration: none;
text-align: center;
box-shadow: 0 1px 1px #aaa;
background-color: #f48e2e;
border: 1px solid #f07821;
cursor: pointer;
line-height: 3.2rem;
}
.precious:hover {
background-color: #ed7e16;
border: 1px solid #e7680f;
color: #fff555;
}
/*onyx stone royal blue button*/
.onyx {
font-family: "Whitney SSm A";
display: inline-block;
color: #fff;
background-color: #455560;
border: 1px solid #33414b;
box-shadow: 0 1px 1px #aaa;
font-size: 13px;
text-transform: uppercase;
cursor: pointer;
font-weight: 400;
letter-spacing: 1px;
text-align: center;
}
.onyx:hover {
background-color: #3a4c59;
border: 1px solid #2b3a45;
color: #ff33aa;
}
/*
pearly gated button
*/
.peral {
height: min-content;
border: 1px solid #ddd;
background: transparent -moz-linear-gradient(center top, #fefefe, #f8f8f8) repeat
scroll 0% 0%;
background: transparent -webkit-linear-gradient(center top, #fefefe, #f8f8f8)
repeat scroll 0% 0%;
text-decoration: none;
color: #0654ba;
font-weight: 500;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
border-radius: 3px;
box-shadow: 0 3px 0 #ddd;
cursor: pointer;
}
.peral:hover {
color: #000;
border: 1px solid #aaa;
background: #fafafa none repeat scroll 0 0;
box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
transition: background-position 0.1s linear 0s;
}
.olive {
background-color: #97ba78;
border: 1px solid #97ba78;
color: #fff;
border-radius: 4px;
font-size: 12px;
cursor: pointer;
font-weight: bold;
}
.olive:hover {
background-color: #83a168;
border: 1px solid #83a168;
color: #000;
text-shadow: -1px 1px 1px #a1ca81;
}
.olive:active {
box-shadow: 0 -42px 02px #a0afa8 inset;
}
.scribe {
color: #fff;
background: url("http://www.hathershawtech.com/images/parchment1r.png")
no-repeat scroll right center #020202;
background-size: 24px;
background-position: right 04px center;
cursor: pointer;
font-weight: normal;
font-size: 1.2em;
margin: 0;
border-radius: 9px;
border: 2px solid #6b9b29;
text-align: left;
}
.scribe:hover {
background-position: right 14px center;
background-color: #6b9b29;
color: #25360e;
border-color: #25360e;
}
.scribe:active {
background-color: #97b969;
}
.herb {
padding: 4px 20px;
background: #6b9d3f none;
color: #fff;
font-family: inherit;
font-weight: 300;
font-size: inherit;
line-height: 3em;
text-transform: uppercase;
letter-spacing: 1px;
}
.herb:hover {
background-color: #4eadd9;
border-color: #4eadd9;
text-shadow: 01px 01px 0 #777;
}
.heaven {
color: #fff;
text-shadow: -1px -1px rgba(0, 0, 0, 0.3);
border-radius: 3px;
display: inline-block;
text-decoration: none;
background-color: #1793e6;
background-image: -moz-linear-gradient(
center top,
#1793e6 0,
#1793e6 0,
#0f639b 100%
);
background-image: -webkit-linear-gradient(
center top,
#1793e6 0,
#1793e6 0,
#0f639b 100%
);
border: 1px solid #0a4166;
box-shadow: 0 1px 0px #0a4166, 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.heaven:hover {
background: #1793e6 none repeat scroll 0 0;
}
/*list links*/
ul.multi_link_css {
font: 12px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
list-style: none;
width: 394px;
height: 40px;
padding: 0;
background: #eee;
background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, #f8f8f8),
color-stop(100%, #ddd)
);
background: -webkit-linear-gradient(top, #f8f8f8 0%, #ddd 100%);
background: -o-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
background: -ms-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
background: linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
border-radius: 2px;
border: 1px solid #d2d2d2;
box-shadow: inset #fff 0 1px 0, inset rgba(0, 0, 0, 0.03) 0 -1px 0;
-webkit-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
ul.multi_link_css:hover a {
color: #fff;
}
ul.multi_link_css:hover {
border-radius: 1px;
background: -moz-linear-gradient(top, #eee 0%, #becae5 100%);
background: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0%, #eee),
color-stop(100%, #becae5)
);
background: -webkit-linear-gradient(top, #eee 0%, #becae5 100%);
background: -o-linear-gradient(top, #eee 0%, #becae5 100%);
background: -ms-linear-gradient(top, #eee 0%, #becae5 100%);
background: linear-gradient(top, #eee 0%, #becae5 100%);
}
li {
width: 122px;
float: left;
border-right: 1px solid #d2d2d2;
height: 40px;
padding-left: 08px;
display: list-item;
text-align: -webkit-match-parent;
}
#css_list_link ul.multi_link_css li a {
-webkit-transition: all 10ms cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 10ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
#css_list_link ul.multi_link_css li:hover a {
color: black;
font-weight: 600;
}
#css_list_link ul.multi_link_css li a:last-child {
border-right: 02px solid #fff;
height: 34px;
}
#css_list_link ul.multi_link_css li:hover a:last-child {
border-bottom: 01px solid #fff;
}
ul.multi_link_css a {
line-height: 1;
font-size: 11px;
color: #999;
display: block;
text-align: center;
padding-top: 6px;
height: 40px;
text-decoration: none;
}
ul.multi_link_css a:hover {
color: #000;
text-decoration: underline;
}
ul.multi_link_css a strong {
font-size: 14px;
display: block;
color: #20203c;
}
body:hover em {
color: #aff6a0;
opacity: 0.3;
font-family: "arial";
text-shadow: 0 2px 0 #000;
letter-spacing: 0.2em;
margin: 0 10%;
}
em {
color: #191970;
opacity: 0.3;
font-family: "arial";
-webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
/* position of div #id "list link" */
#css_list_link {
margin: auto 44px;
}
/*END END END OF list links*/
Also see: Tab Triggers