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.
<button type="button" data-toggle="tooltip" class="btn btn-default" title="" onclick="wishlist.add('40');" data-original-title="Add to Wish List" aria-describedby="tooltip929570"><i class="fa fa-heart"></i></button>
<button type="button" data-toggle="tooltip" class="btn btn-default" title="" onclick="compare.add('40');" data-original-title="Compare this Product" aria-describedby="tooltip513186"><i class="fa fa-exchange"></i></button>
<div class="form-group">
<label class="control-label" for="input-quantity">Qty</label>
<div class="input-group w60">
<span class="input-group-btn"><button class="btn btn-default value-control" data-action="minus" data-target="input-quantity"><span class="glyphicon glyphicon-minus"></span></button></span>
<input name="quantity" value="1" size="2" id="input-quantity" class="form-control" type="text">
<span class="input-group-btn"><button class="btn btn-default value-control" data-action="plus" data-target="input-quantity"><span class="glyphicon glyphicon-plus"></span></button></span>
</div>
<input name="product_id" value="40" type="hidden">
<br>
<button type="button" id="button-cart" data-loading-text="Loading..." class="btn btn-default btn-lg">Add to Cart</button>
</div>
body {
font-family: 'Open Sans', sans-serif;
font-weight: 400;
background-color: #fff;
color: #666;
font-size: 12px;
line-height: 20px;
width: 100%;
}
h1, h2, h3, h4, h5, h6 {
color: #444;
}
/* default font size */
.fa {
font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
font-size: 33px;
}
h2 {
font-size: 27px;
}
h3 {
font-size: 21px;
}
h4 {
font-size: 15px;
}
h5 {
font-size: 12px;
}
h6 {
font-size: 10.2px;
}
a {
color: #0090e3;
}
a:hover {
text-decoration: none;
}
legend {
font-size: 18px;
padding: 7px 0px
}
label {
font-size: 12px;
font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
font-size: 12px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
font-size: 12px;
}
.input-group .input-group-addon {
font-size: 12px;
height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
display: inline;
}
.nav-tabs {
margin-bottom: 15px;
}
div.required .control-label:before {
content: '* ';
color: #F00;
font-weight: bold;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
text-decoration: none;
color: #666;
background-color: #0090e3;
}
/* top */
#top {
padding: 4px 0px 3px 0;
margin: 0 0 20px 0;
min-height: 40px;
background-color: #fff;
}
#top .container {
padding: 0 20px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
text-align: left;
color: #666;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
text-shadow: none;
color: #fff;
background-color: #555;
}
#top .btn-link, #top-links li, #top-links a {
color: #444;
text-decoration: none;
}
header .btn-inverse{
border: 1px solid #303030;
}
#top .btn-link:hover, #top-links a:hover {
color: #303030;
}
#top-links .dropdown-menu {
background-color: #fff;
}
#top-links .dropdown-menu a {
text-shadow: none;
color: #666;
}
#top-links .dropdown-menu a:hover {
color: #fff;
background-color: #555;
}
#top .btn-link strong {
font-size: 14px;
line-height: 14px;
}
#top-links {
padding-top: 6px;
}
#top-links a + a {
margin-left: 15px;
}
#top-links .nav .open>a, .nav .open>a:focus, .nav .open>a:hover{
background-color: transparent;
}
/* logo */
#logo {
margin: 0 0 10px 0;
}
.logofix {
display: inline;
}
@media (max-width: 767px) {
#logo{
text-align: center;
}
}
/* search */
#search {
margin-bottom: 10px;
margin-top: 8px;
}
#search .btn {
border: 1px solid #303030;
}
#search .btn:hover {
border: 1px solid #555;
background-color: #555;
}
#search .input-lg {
height: 40px;
line-height: 20px;
padding: 0 10px;
}
#search .btn-lg {
font-size: 15px;
line-height: 18px;
padding: 10px 35px;
}
/* cart */
#cart {
margin-bottom: 10px;
margin-top: 8px;
}
#cart > .btn {
font-size: 12px;
line-height: 18px;
color: #FFF;
}
#cart.open > .btn {
background-image: none;
background-color: #FFFFFF;
border: 1px solid #E6E6E6;
color: #666;
box-shadow: none;
text-shadow: none;
}
#cart.open > .btn:hover {
color: #444;
}
#cart .dropdown-menu {
background: #fff;
z-index: 1001;
}
#cart .dropdown-menu {
min-width: 100%;
}
@media (max-width: 478px) {
#cart .dropdown-menu {
width: 100%;
}
}
#cart .dropdown-menu table {
margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
min-width: 427px;
padding: 0 10px;
}
@media (max-width: 478px) {
#cart .dropdown-menu li > div {
min-width: 100%;
}
}
#cart .dropdown-menu li p {
margin: 20px 0;
}
/* menu */
.menu_w {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
margin-bottom: 15px;
background-color: #fff;
-webkit-box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
-moz-box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
}
#menu {
font-family: 'Roboto', 'Open Sans';
min-height: 40px;
font-size: 14px;
}
#menu .nav > li > a {
transition: 0.2s;
color: #777;
padding: 10px 15px 10px 15px;
min-height: 15px;
}
#menu .nav > li > a:hover, #menu .nav > li.open > a {
background-color: rgba(0, 0, 0, 0);
color: #555;
}
#menu .dropdown-menu {
background-color: #fff;
padding-bottom: 0;
padding-top: 0;
border: none;
-webkit-box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
-moz-box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
}
#menu .dropdown-inner {
display: table;
}
#menu .dropdown-inner ul {
display: table-cell;
}
#menu .dropdown-inner a {
transition: 0.2s;
min-width: 160px;
display: block;
padding: 10px 20px;
clear: both;
line-height: 20px;
color: #777;
font-size: 12px;
}
#menu .dropdown-inner li a:hover {
color: #000;
background-color: rgba(0, 0, 0, 0);
transform: translateX(3px);
}
#menu .see-all {
transition: 0.2s;
display: block;
margin-top: 0.5em;
border-top: 1px solid #444;
padding: 3px 20px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
font-size: 12px;
}
#menu .see-all:hover, #menu .see-all:focus {
text-decoration: none;
color: #fff;
background-color: #0090e3;
}
#menu #category {
float: left;
padding-left: 15px;
font-size: 16px;
font-weight: 700;
line-height: 40px;
color: #555;
}
#menu .btn-navbar {
font-size: 15px;
font-stretch: expanded;
color: #FFF;
padding: 2px 18px;
float: right;
background-color: #303030;
}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
color: #ffffff;
background-color: #303030;
}
@media (min-width: 768px) {
#menu .dropdown:hover .dropdown-menu {
display: block;
}
}
@media (max-width: 767px) {
#menu {
border-radius: 0px;
}
#menu div.dropdown-inner > ul.list-unstyled {
display: block;
}
#menu div.dropdown-menu {
margin-left: 0 !important;
padding-bottom: 10px;
background-color: rgba(0, 0, 0, 0);
}
#menu .dropdown-inner {
display: block;
}
#menu .dropdown-inner a {
width: 100%;
color: #777;
}
#menu .dropdown-menu a:hover,
#menu .dropdown-menu ul li a:hover {
background: rgba(0, 0, 0, 0);
}
#menu .see-all {
margin-top: 0;
border: none;
border-radius: 0;
color: #fff;
}
}
/* content */
#content {
min-height: 600px;
}
/* footer */
footer {
margin-top: 30px;
padding-top: 30px;
background-color: #fff;
color: #777;
-webkit-box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
-moz-box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
box-shadow: 0px 0px 5px 1px rgba(209,209,209,1);
}
footer hr {
border-top: none;
border-bottom: 1px solid #e1e1e1;
}
footer a {
font-family: 'Roboto', sans-serif;
font-size: 13px;
transition: 0.2s;
color: #777;
}
footer a:hover {
color: #111;
}
footer h5 {
font-family: 'Roboto', sans-serif;
font-size: 15px;
font-weight: bold;
text-align: center;
color: #666;
}
footer ul li{
border-bottom: 0px solid #e1e1e1;
padding-top: 8px;
padding-bottom: 8px;
text-align: center;
}
/* alert */
.alert {
padding: 8px 14px 8px 14px;
}
/* breadcrumb */
.breadcrumb {
margin: 0 0 20px 0;
padding: 8px 0;
border: 1px solid #ddd;
border-radius: 0;
background-color: #fff;
}
.breadcrumb a {
color: #0090e3;
}
.breadcrumb i {
font-size: 15px;
}
.breadcrumb > li {
padding: 0 20px;
position: relative;
white-space: nowrap;
}
.breadcrumb > li + li:before {
content: '';
padding: 0;
}
.breadcrumb > li:after {
content: '';
display: block;
position: absolute;
top: -3px;
right: -5px;
width: 26px;
height: 26px;
border-right: 1px solid #DDD;
border-bottom: 1px solid #DDD;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.pagination {
margin: 0;
}
/* buttons */
.buttons {
margin: 1em 0;
}
.btn {
padding: 8.5px 16px;
font-size: 12px;
border: none;
border-radius: 0px;
}
.btn-xs {
font-size: 9px;
}
.btn-sm {
font-size: 10.2px;
}
.btn-lg {
padding: 10px 16px;
font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
font-size: 12px;
}
.btn-group > .btn-xs {
font-size: 9px;
}
.btn-group > .btn-sm {
font-size: 10.2px;
}
.btn-group > .btn-lg {
font-size: 15px;
}
.btn-default {
transition: 0.4s;
color: #fff;
background-color: #303030;
text-transform: uppercase;
position:relative;
padding-right:52px;
width:100%
}
.btn-default:hover, .btn-default:active, .btn-default.active, .btn-default.disabled, .btn-default[disabled] {
background-color: #666;
color: #fff;
}
.btn-primary {
transition: 0.4s;
color: #fff;
background-color: #303030;
text-transform: uppercase;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
background-color: #666;
color: #fff;
}
.btn-warning {
color: #ffffff;
background-color: #faa732;
background-image: linear-gradient(to bottom, #fbb450, #f89406);
background-repeat: repeat-x;
border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
color: #ffffff;
background-color: #da4f49;
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
background-repeat: repeat-x;
border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
color: #ffffff;
background-color: #5bb75b;
background-image: linear-gradient(to bottom, #62c462, #51a351);
background-repeat: repeat-x;
border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
color: #ffffff;
background-color: #df5c39;
background-image: linear-gradient(to bottom, #e06342, #dc512c);
background-repeat: repeat-x;
border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
background-image: none;
background-color: #df5c39;
}
.btn-link {
border-color: rgba(0, 0, 0, 0);
cursor: pointer;
color: #23A1D1;
border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
background-color: rgba(0, 0, 0, 0);
background-image: none;
box-shadow: none;
}
.btn-inverse {
color: #ffffff;
background-color: #363636;
background-image: linear-gradient(to bottom, #444444, #222222);
background-repeat: repeat-x;
border-color: #222222 #222222 #000000;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
background-color: #222222;
background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
border: 1px solid #DDDDDD;
color: #888888;
padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
color: #444444;
background: #eeeeee;
border: 1px solid #DDDDDD;
}
/* carousel */
.carousel-caption {
color: #FFFFFF;
}
.carousel-control .icon-prev:before {
content: '\f053';
font-family: FontAwesome;
}
.carousel-control .icon-next:before {
content: '\f054';
font-family: FontAwesome;
}
/* product list */
.product-thumb {
border: 1px solid #ddd;
padding-bottom: 0px;
margin-bottom: 20px;
overflow: auto;
transition: all 0.4s;
}
.product-thumb:hover {
border: 1px solid #555;
}
.product-thumb .image {
text-align: center;
}
.product-thumb .image a {
display: block;
}
.product-thumb .image img {
margin-left: auto;
margin-right: auto;
}
.product-grid .product-thumb .image {
float: none;
}
@media (min-width: 767px) {
.product-list .product-thumb .image {
float: left;
padding: 0 15px;
}
}
.product-thumb h4 {
text-align: center;
}
.product-thumb h4 a {
color: #666;
}
.product-thumb .caption {
padding: 0 20px;
}
.product-list .product-thumb .caption {
margin-left: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
min-height: 210px;
padding: 0 10px;
}
}
@media (max-width: 767px) {
.product-list .product-thumb .caption {
min-height: 0;
margin-left: 0;
padding: 0 10px;
}
.product-grid .product-thumb .caption {
min-height: 0;
}
}
.product-thumb .rating {
padding-bottom: 10px;
}
.rating .fa-stack {
font-size: 8px;
}
.rating .fa-star-o {
color: #999;
font-size: 15px;
}
.rating .fa-star {
color: #FC0;
font-size: 15px;
}
.rating .fa-star + .fa-star-o {
color: #E69500;
}
h2.price {
margin: 0;
}
.product-thumb .price {
color: #444;
padding-bottom: 5px;
}
.product-thumb .price-new {
font-weight: 600;
background-color: #0090e3;
color: #fff;
padding: 5px;
}
.product-thumb .price-old {
color: #999;
text-decoration: line-through;
margin-left: 10px;
}
.product-thumb .price-tax {
color: #999;
font-size: 12px;
display: block;
}
.product-thumb .button-group {
border-top: 1px solid #ddd;
background-color: #eee;
overflow: auto;
}
.product-list .product-thumb .button-group {
border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
.product-list .product-thumb .button-group {
border-left: none;
}
}
.product-thumb .button-group button {
width: 60%;
border: none;
display: inline-block;
float: left;
background-color: #eee;
color: #888;
line-height: 38px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
}
.product-thumb .button-group button + button {
width: 20%;
border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
color: #444;
background-color: #ddd;
text-decoration: none;
cursor: pointer;
}
@media (max-width: 1200px) {
.product-thumb .button-group button, .product-thumb .button-group button + button {
width: 33.33%;
}
}
@media (max-width: 767px) {
.product-thumb .button-group button, .product-thumb .button-group button + button {
width: 33.33%;
}
}
.thumbnails {
overflow: auto;
clear: both;
list-style: none;
padding: 0;
margin: 0;
}
.thumbnails > li {
margin-left: 20px;
}
.thumbnails {
margin-left: -20px;
}
.thumbnails > img {
width: 100%;
}
.image-additional a {
margin-bottom: 20px;
padding: 5px;
display: block;
border: 1px solid #ddd;
}
.image-additional {
max-width: 78px;
}
.thumbnails .image-additional {
float: left;
margin-left: 20px;
}
@media (min-width: 1200px) {
#content .col-lg-2:nth-child(6n+1),
#content .col-lg-3:nth-child(4n+1),
#content .col-lg-4:nth-child(3n+1),
#content .col-lg-6:nth-child(2n+1) {
clear:left;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
#content .col-md-2:nth-child(6n+1),
#content .col-md-3:nth-child(4n+1),
#content .col-md-4:nth-child(3n+1),
#content .col-md-6:nth-child(2n+1) {
clear:left;
}
}
@media (min-width: 768px) and (max-width: 991px) {
#content .col-sm-2:nth-child(6n+1),
#content .col-sm-3:nth-child(4n+1),
#content .col-sm-4:nth-child(3n+1),
#content .col-sm-6:nth-child(2n+1) {
clear:left;
}
}
/* fixed colum left + content + right*/
@media (min-width: 768px) {
#column-left .product-layout .col-md-3 {
width: 100%;
}
#column-left + #content .product-layout .col-md-3 {
width: 50%;
}
#column-left + #content + #column-right .product-layout .col-md-3 {
width: 100%;
}
#content + #column-right .product-layout .col-md-3 {
width: 100%;
}
}
/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
width: 100%;
}
/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
min-width: 50px;
}
/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
background-image: none;
background-color: #df5c39;
}
/* overwrite bootstrap */
.navbar{
border : 0;
border-radius: 0;
margin-bottom: 0;
}
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn-group:not(:last-child)>.btn, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.dropdown-menu {
border-radius: 0;
padding-top: 0;
padding-bottom: 0;
}
.thumbnail {
border-radius: 0;
}
.nav-tabs>li>a {
border-radius: 0;
}
.form-control {
border-radius: 0;
}
.list-group-item:first-child {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.list-group-item:last-child {
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
.well {
border-radius: 0;
background-color: #fff;
}
.alert {
border-radius: 0;
}
.navbar-collapse {
padding-right: 0px;
padding-left: 0px;
}
.swiper-viewport {
border: none;
border-radius: 0px;
box-shadow: none;
}
.title-h {
text-align: center;
border: 1px solid #ddd;
padding: 8px;
margin-bottom: 20px;
}
.title-h h3{
margin: 0px;
font-size: 18px;
}
@media (max-width: 478px) {
.navbar-nav{
margin-left: 0;
margin-right: 0;
}
}
.w60{
width: 60px;
}
#product .glyphicon{
font-size: 10px;
}
#product .btn{
font-weight: bold;
}
.beffect{
position: relative;
overflow: hidden;
}
.beffect img {
max-width: 100%;
transition: all 0.5s;
}
.beffect a:hover::before {
border: 0 solid rgba(255, 255, 255, 0.7);
}
.beffect a::before {
content: "";
height: 100%;
width: 100%;
position: absolute;
border: 50px solid rgba(255, 255, 255, 0);
top: 0;
left: 0;
transition: all 0.5s ease-in-out;
}
.beffect a:hover::after {
transform: scale(0.5);
opacity: 0;
transition-delay: 0.1s;
}
.beffect a::after {
content: "";
height: 100%;
width: 100%;
position: absolute;
opacity: 0.5;
border: 30px solid #fff;
top: 0;
left: 0;
transform: scale(0);
transition: all 0.3s ease-in-out;
transition-delay: 0s;
}
/* extra css */
.beffect a:after,
.beffect a:before {
box-sizing: border-box;
}
/*the width and height should be ajustment*/
.image-wrapper {
width: 300px; /*or 800px or 80% */
}
.image-wrapper img {
width: 100%;
}
.beffect {
height: 100%;
}
.star-rating {
direction: rtl;
display: inline-block;
padding: 20px;
}
.star-rating input[type=radio] {
display: none;
}
.star-rating label {
color: #bbb;
font-size: 35px;
padding: 0;
cursor: pointer;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label {
color: #f2b600;
}
.fa-shopping-cart {
position:absolute;
right:0px;
top:0px;
padding:9px 12px 7px 10px;
background:red;
height:100%;
font-size:130%;
}
Also see: Tab Triggers