mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
Fix layout of content pages
This commit is contained in:
parent
762b56e401
commit
3c58d08cea
2 changed files with 13 additions and 5 deletions
|
@ -12,7 +12,7 @@
|
|||
<script src="/js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="/js/home.js" type="text/javascript" charset="utf-8"></script>
|
||||
</head>
|
||||
<body>
|
||||
<body class="home">
|
||||
<%= render 'header' %>
|
||||
<div id="technical" class="column">
|
||||
<div>
|
||||
|
|
|
@ -35,6 +35,12 @@ h1,h2,h3,h4,h5,h6 {
|
|||
/* 6,7,8,9,10,11,12,14,16,18,21,24,36,48,60,72 */
|
||||
h1 {
|
||||
font-size: 36px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
body.home h1 {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
h2 {
|
||||
font-size: 24px;
|
||||
|
@ -113,19 +119,21 @@ ul#menu li {
|
|||
font-size: inherit;
|
||||
}
|
||||
|
||||
body.article h1 {
|
||||
/*body.article h1 {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}*/
|
||||
|
||||
#content {
|
||||
padding: 0 20px;
|
||||
clear: both;
|
||||
}
|
||||
body.article #content {
|
||||
min-width: 600px;
|
||||
margin-right: 40%;
|
||||
}
|
||||
body.articles #content {
|
||||
min-width: auto;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#footer {
|
||||
color: gray;
|
||||
|
|
Loading…
Reference in a new issue