Skip to content

Commit

Permalink
style.css: minor cleanup.
Browse files Browse the repository at this point in the history
* remove leading zeros
* remove inherited properties
  • Loading branch information
XhmikosR committed Dec 2, 2019
1 parent 9850697 commit f6a321c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions public/assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
.navbar-brand > svg {
display: inline-block;
margin-right: 0.5rem;
margin-right: .5rem;
vertical-align: middle;
width: 20px;
height: 20px;
}

.display-5 {
font-size: 3rem;
font-weight: 300;
line-height: 1.2;
}

.social {
Expand All @@ -23,9 +21,9 @@
}

.input-group .dropdown-toggle::after {
transition: -webkit-transform 0.35s ease;
transition: transform 0.35s ease;
transition: transform 0.35s ease, -webkit-transform 0.35s ease;
transition: -webkit-transform .35s ease;
transition: transform .35s ease;
transition: transform .35s ease, -webkit-transform .35s ease;
}

.input-group .dropdown-toggle-open::after {
Expand All @@ -34,7 +32,6 @@
}

.book-card img {
/* use the height of the smallest image so that they are aligned */
height: 250px;
width: auto;
height: 250px;
}

0 comments on commit f6a321c

Please sign in to comment.