Change the font for inactive items from light to normal
This commit is contained in:
parent
f96c88a1fa
commit
788b7d7683
2
Makefile
2
Makefile
|
@ -54,7 +54,7 @@ dist:
|
|||
| perl -pe 's/<link.*>\n/STYLE_TAG/g' \
|
||||
| perl -pe 's/(STYLE_TAG\s*)+/\
|
||||
<link rel="stylesheet" href="\/app.css">\n \
|
||||
<link rel="stylesheet" href="\/\/fonts.googleapis.com\/css?family=Open\+Sans:400,300,600">\n /g' \
|
||||
<link rel="stylesheet" href="\/\/fonts.googleapis.com\/css?family=Open\+Sans:400,600">\n /g' \
|
||||
| perl -pe 's/<script.*>\n/SCRIPT_TAG/g' \
|
||||
| perl -pe 's/(SCRIPT_TAG\s*)+/\
|
||||
<script type="text\/javascript" src="\/app.js"><\/script>\n/g' \
|
||||
|
|
|
@ -107,16 +107,14 @@
|
|||
}
|
||||
.selector li {
|
||||
display: inline-block;
|
||||
font-weight: 300;
|
||||
color: #aaa;
|
||||
cursor: pointer;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.selector li.active {
|
||||
font-weight: 400;
|
||||
color: #222;
|
||||
color: #000;
|
||||
cursor: default;
|
||||
border-bottom: #222 1px solid;
|
||||
border-bottom: #000 1px solid;
|
||||
}
|
||||
|
||||
.whatsgoingon {
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
display: inline-block;
|
||||
line-height: 21px;
|
||||
width: 100%;
|
||||
color: #000;
|
||||
color: #aaa;
|
||||
text-decoration: none;
|
||||
width: auto;
|
||||
max-width: 150px;
|
||||
|
@ -40,10 +40,8 @@
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
border-bottom: #fff 1px solid;
|
||||
font-weight: 300;
|
||||
}
|
||||
.menu .nav a.active {
|
||||
font-weight: 400;
|
||||
color: #000;
|
||||
border-bottom: #000 1px solid;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue