fix
This commit is contained in:
parent
8e015a1405
commit
604c7e9dcd
1 changed files with 9 additions and 4 deletions
13
index.php
13
index.php
|
@ -63,21 +63,26 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#center {
|
#center {
|
||||||
max-width: 1200px;
|
max-width: 900px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
gap: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#function-column, #content-column {
|
#function-column {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content-column {
|
||||||
|
flex: 2;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="center">
|
<div id="center">
|
||||||
|
|
||||||
<div id="#function-column">
|
<div id="function-column">
|
||||||
|
|
||||||
<!-- header and options for making posts -->
|
<!-- header and options for making posts -->
|
||||||
<div class="post" style="border-top-left-radius: 0; border-top-right-radius: 0;">
|
<div class="post" style="border-top-left-radius: 0; border-top-right-radius: 0;">
|
||||||
|
@ -94,7 +99,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="#content-column">
|
<div id="content-column">
|
||||||
|
|
||||||
<!-- save most recent signature as a cookie and autoload on page load -->
|
<!-- save most recent signature as a cookie and autoload on page load -->
|
||||||
<script>
|
<script>
|
||||||
|
|
Reference in a new issue