Skip to content

Commit

Permalink
Carousel indicators are gray to improve visibility on white images
Browse files Browse the repository at this point in the history
Carousel automatically resizes and centers images
Bullets for ordered and unordered lists are now aligned to left paragraph margin (previously stood out)
  • Loading branch information
SZanlongo committed Feb 6, 2015
1 parent c9cf7fe commit 3519784
Showing 1 changed file with 36 additions and 4 deletions.
40 changes: 36 additions & 4 deletions _includes/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ img {
max-width: 100%;
}

ul {
margin-left: 0;
padding-left: 20px;
}

ol {
margin-left: 0;
padding-left: 26px;
}

a {
color:{{ site.colors.link }};
padding: 0;
Expand Down Expand Up @@ -207,9 +217,9 @@ a:focus {

#headerwrap {
background-color: {{ site.colors.primary }};
min-height: 550px;
min-height: 0px;
padding-top: 100px;
padding-bottom: 0px;
padding-bottom: 50px;
text-align: center;
}

Expand All @@ -229,8 +239,8 @@ a:focus {

/* Services Wrap */
#service {
margin-top: 100px;
margin-bottom: 80px;
margin-top: 0px;
margin-bottom: 0px;
}

#service i {
Expand Down Expand Up @@ -387,6 +397,28 @@ a:focus {
margin-left: 15px;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: 600px;
max-height: 600px;
margin: 0 auto;
}

.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #ccc \9;
background-color: rgba(0, 0, 0, 0);
border: 1px solid #666;
border-radius: 10px;
}

.ctitle {
color: {{ site.colors.primary }};
font-weight: 700;
Expand Down

0 comments on commit 3519784

Please sign in to comment.