master
Nick Sergeant 2012-07-19 11:36:39 -04:00
parent ebedceb3bd
commit a537c080cd
4 changed files with 12 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1333,6 +1333,13 @@ body.detail {
margin-right: 100px;
}
}
body.is-pro {
article.snipt {
&:first-of-type {
margin-top: 30px;
}
}
}
// Pages
body.detail {

View File

@ -19,7 +19,7 @@
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/snipt.css?11" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/snipt.css?12" />
{% if has_snipts and not detail %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ request.path }}?rss{% if not public %}&api_key={{ request.user.api_key.key }}{% endif %}" />
@ -39,7 +39,7 @@
<![endif]-->
</head>
<body class="{% block body-class %}{% endblock %}">
<body class="{% block body-class %}{% endblock %} {% if request.user.profile.is_pro %}is-pro{% endif %}">
{% block header %}
<header class="main">
<div class="inner">
@ -335,7 +335,7 @@
</div>
{% endblock %}
<script type="text/javascript" src="{{ STATIC_URL }}js/snipt.js?11"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/snipt.js?12"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/libs/ace/ace.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/libs/ace/theme-tomorrow.js"></script>
{% block extra-scripts %}{% endblock %}