Difference between revisions of "QualityBox.css"

From Freephile Wiki
Jump to navigation Jump to search
(Created page with ".pricing-table * { list-style: none; line-height: 1; text-align: center !important; } .title { border-radius:10px 10px 0 0; font-size:4.5rem; font-weight: 600; } .prici...")
 
(going back to when this was working)
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
html {
 +
  font-size: 16px;
 +
}
 
.pricing-table * {
 
.pricing-table * {
 
   list-style: none;  
 
   list-style: none;  
Line 4: Line 7:
 
   text-align: center !important;
 
   text-align: center !important;
 
}
 
}
.title { border-radius:10px 10px 0 0; font-size:4.5rem; font-weight: 600; }
+
.title {  
.pricing-table .title { background-color: #fff; padding: 1.625rem 1.25rem; text-align: center; color: #375793;}
+
  border-radius:10px 10px 0 0;  
 +
  font-size:4.5rem;  
 +
  font-weight: 600;  
 +
}
 +
.pricing-table .title {  
 +
  background-color: #fff;  
 +
  padding: 1.625rem 1.25rem;  
 +
  text-align: center;  
 +
  color: #375793;
 +
}
 
.pricing-table .title span {
 
.pricing-table .title span {
 
   display: block;
 
   display: block;
Line 19: Line 31:
 
   color: #fff;
 
   color: #fff;
 
}
 
}
 
 
.pricing-table .price {
 
.pricing-table .price {
 
   background-color: #e2e9f0;
 
   background-color: #e2e9f0;
Line 39: Line 50:
 
   border-bottom: solid 1px #d1dce7;
 
   border-bottom: solid 1px #d1dce7;
 
}
 
}
 
 
.pricing-table .btn {
 
.pricing-table .btn {
 
   text-align: center;
 
   text-align: center;
 
}
 
}
 
 
a:hover {
 
a:hover {
 
   cursor: pointer;
 
   cursor: pointer;
Line 57: Line 66:
 
   color: #fff !important;
 
   color: #fff !important;
 
}
 
}
 +
 +
[[Category:CSS]]
 +
[[Category:QualityBox]]

Latest revision as of 13:41, 23 January 2017

html {

 font-size: 16px;

} .pricing-table * {

 list-style: none; 
 line-height: 1;
 text-align: center !important;

} .title {

 border-radius:10px 10px 0 0; 
 font-size:4.5rem; 
 font-weight: 600; 

} .pricing-table .title {

 background-color: #fff; 
 padding: 1.625rem 1.25rem; 
 text-align: center; 
 color: #375793;

} .pricing-table .title span {

 display: block;
 font-size: 1.75rem;
 font-weight: 300;

} .pricing-table.most-popular .most-popular-title {

 padding: .9375rem;
 border-radius: 10px 10px 0 0;
 font-weight: 300;
 background-color: #375793;
 border: none;
 color: #fff;

} .pricing-table .price {

 background-color: #e2e9f0;
 padding: 1.25rem;
 text-align: center;
 color: #2d3339;
 font-weight: 700;
 font-size: 1.125rem;
 border-top: 1px solid #c4d2df;
 border-bottom: 1px solid #c4d2df;

} .pricing-table .bullet {

 background-color: #fff;
 padding: 1.25rem;
 text-align: center;
 color: #333;
 font-size: 1.125rem;
 font-weight: 400;
 border-bottom: solid 1px #d1dce7;

} .pricing-table .btn {

 text-align: center;

} a:hover {

 cursor: pointer;

} a:active, a:hover {

 outline: 0;

} .btn {

 display:block;

} .btn a {

 text-decoration:none;
 color: #fff !important;

}