style: more clear typography fixes
This commit is contained in:
parent
c30100fe26
commit
d7188553c4
2 changed files with 13 additions and 4 deletions
|
@ -38,6 +38,8 @@ header h1 {
|
||||||
border-right: 0; }
|
border-right: 0; }
|
||||||
.navbar ul {
|
.navbar ul {
|
||||||
padding-bottom: 0; }
|
padding-bottom: 0; }
|
||||||
|
.navbar li {
|
||||||
|
margin: 0; }
|
||||||
|
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3), inset 0px -2px 0px rgba(0, 0, 0, 0.2); }
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3), inset 0px -2px 0px rgba(0, 0, 0, 0.2); }
|
||||||
|
@ -53,6 +55,7 @@ ul.social {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
text-align: center; }
|
text-align: center; }
|
||||||
ul.social li {
|
ul.social li {
|
||||||
|
margin: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: inline; }
|
display: inline; }
|
||||||
ul.social li a {
|
ul.social li a {
|
||||||
|
|
|
@ -13,10 +13,16 @@ $border-size: 1px;
|
||||||
border: $border-size solid rgba(0, 0, 0, 0.3)
|
border: $border-size solid rgba(0, 0, 0, 0.3)
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin border-radius {
|
@mixin border-radius() {
|
||||||
border-radius: $border-radius $border-radius $border-radius $border-radius;
|
border-radius: $border-radius $border-radius $border-radius $border-radius;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin li-no-margin() {
|
||||||
|
li {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
background: #64b5f6 url('../img/background.png') center bottom repeat-x;
|
background: #64b5f6 url('../img/background.png') center bottom repeat-x;
|
||||||
}
|
}
|
||||||
|
@ -60,6 +66,7 @@ header h1 {
|
||||||
ul {
|
ul {
|
||||||
padding-bottom:0;
|
padding-bottom:0;
|
||||||
}
|
}
|
||||||
|
@include li-no-margin();
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
|
@ -81,6 +88,7 @@ ul.social {
|
||||||
margin:auto;
|
margin:auto;
|
||||||
text-align:center;
|
text-align:center;
|
||||||
li {
|
li {
|
||||||
|
margin:0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: inline;
|
display: inline;
|
||||||
a {
|
a {
|
||||||
|
@ -279,9 +287,7 @@ a.list-group-item:hover {
|
||||||
border: 0;
|
border: 0;
|
||||||
background-color:#eeeeec;
|
background-color:#eeeeec;
|
||||||
margin-bottom:1.2em;
|
margin-bottom:1.2em;
|
||||||
li {
|
@include li-no-margin();
|
||||||
margin:0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------ PARTAGE RESEAUX SOCIAUX ------------------- */
|
/* ------------------ PARTAGE RESEAUX SOCIAUX ------------------- */
|
||||||
|
|
Reference in a new issue