Portfolio stuff.

master
Nick Sergeant 2013-01-09 22:25:29 -05:00
parent ab11888320
commit d8cdf7c717
4 changed files with 30 additions and 3 deletions

View File

@ -17,7 +17,7 @@
<script type="text/javascript" src="{{ STATIC_URL }}js/pro.js"></script> <script type="text/javascript" src="{{ STATIC_URL }}js/pro.js"></script>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?10" /> <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?11" />
<link rel="shortcut icon" href="/static/images/blog-favicon.ico" > <link rel="shortcut icon" href="/static/images/blog-favicon.ico" >

File diff suppressed because one or more lines are too long

View File

@ -443,6 +443,29 @@ article {
} }
} }
div.markdown { div.markdown {
h4 {
border-top: 1px dashed #CCC;
padding-top: 20px;
position: relative;
a {
color: #0088CC;
text-decoration: none;
}
&:before {
background: #0088CC;
border: 4px solid #EAEAEA;
content: "";
display: block;
height: 20px;
left: -70px;
position: absolute;
top: 17px;
width: 20px;
z-index: 51;
@include border-radius(20px);
}
}
p { p {
strong { strong {
font-weight: bold; font-weight: bold;
@ -461,6 +484,9 @@ article {
margin-bottom: 0; margin-bottom: 0;
} }
} }
ul {
margin-bottom: 20px;
}
} }
&:after { &:after {
bottom: 0; bottom: 0;
@ -477,6 +503,7 @@ article {
} }
&.detail { &.detail {
div.post-content { div.post-content {
overflow: visible;
max-height: none; max-height: none;
&:after { &:after {

File diff suppressed because one or more lines are too long