188 lines
2.7 KiB
CSS
Raw Normal View History

.container {
max-width: 728px !important;
}
2013-05-27 14:47:56 +05:30
h1, h2, h3, h4, h5 {
font-weight: bold;
}
2013-06-19 14:57:14 +05:30
a {
cursor: pointer;
}
img {
max-width: 100%;
}
2013-05-27 14:47:56 +05:30
.content {
padding-bottom: 30px;
2012-02-08 12:33:13 +05:30
}
2013-07-11 15:19:13 +05:30
.outer {
padding: 0px 20px;
}
.navbar {
margin: 0px -20px;
}
.banner {
margin-top: 20px;
padding: 0px 20px;
}
2013-02-21 14:25:30 +05:30
.missing-image {
background-color: #eee;
padding: 40px;
2013-05-27 14:47:56 +05:30
width: 112px;
2013-02-21 14:25:30 +05:30
font-size: 32px;
color: #888;
}
2013-02-20 15:02:21 +05:30
.social-icons {
2013-02-21 10:49:37 +05:30
font-size: 120%;
float: right;
text-align: right;
2013-02-20 15:02:21 +05:30
}
.social-icons a:hover {
text-decoration: none;
}
.social-icons a i:hover {
text-decoration: none;
}
2013-02-21 10:49:37 +05:30
.social-icons i {
margin-left: 5px;
}
div.web-footer {
padding-top: 10px;
}
2013-02-21 10:49:37 +05:30
.web-footer-menu ul {
list-style: none;
margin: 0px;
2012-02-07 14:57:49 +05:30
padding: 0px;
}
.web-footer-menu ul li {
display: inline;
2013-02-21 10:49:37 +05:30
padding: 2px 14px 2px 0px;
margin: 0px;
2012-04-10 11:51:08 +05:30
}
2013-02-21 16:57:54 +05:30
.avatar {
display: inline-block;
vertical-align: middle;
overflow: hidden;
background-color: #ddd;
border: 1px solid #eee;
}
.avatar-small {
margin-right: 5px;
width: 30px;
height: 30px;
border-radius: 30px;
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
}
.avatar-small img {
width: 30px;
}
2013-03-07 18:51:10 +05:30
.avatar-medium {
margin-right: 5px;
width: 48px;
height: 48px;
border-radius: 48px;
-moz-border-radius: 48px;
-webkit-border-radius: 48px;
}
.avatar-medium img {
width: 48px;
}
2013-02-21 16:57:54 +05:30
.avatar-large {
margin-right: 10px;
width: 72px;
height: 72px;
border-radius: 72px;
-moz-border-radius: 72px;
-webkit-border-radius: 72px;
}
.avatar-large img {
width: 72px;
}
.avatar-x-large {
margin-right: 10px;
width: 100px;
height: 100px;
border-radius: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
}
.avatar-x-large img {
width: 100px;
2012-04-10 11:51:08 +05:30
}
2013-05-28 17:01:52 +05:30
.carousel-control .icon {
position: absolute;
top: 50%;
left: 50%;
z-index: 5;
display: inline-block;
width: 20px;
height: 20px;
margin-top: -10px;
margin-left: -10px;
}
.hidden-sm-inline {
display: none;
}
@media (min-width: 768px) {
.hidden-sm-inline {
display: inline;
}
}
.accordion-heading, .accordion-inner {
padding-left: 10px;
}
fieldset {
margin-bottom: 20px;
}
/* buttons */
.btn-default {
color: #ffffff;
background-color: #a7a9aa;
border-color: #a7a9aa;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
background-color: #9a9c9d;
border-color: #8d9091;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #a7a9aa;
border-color: #a7a9aa;
2013-07-15 18:28:14 +05:30
}