columnize
This commit is contained in:
parent
f768b6f7ac
commit
8e015a1405
1 changed files with 64 additions and 43 deletions
27
index.php
27
index.php
|
@ -23,8 +23,6 @@
|
|||
|
||||
.post {
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
background: white;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
|
@ -55,17 +53,32 @@
|
|||
}
|
||||
|
||||
#refresh {
|
||||
max-width: 120px;
|
||||
width: 120px;
|
||||
margin: auto;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
color: var(--accent);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#center {
|
||||
max-width: 1200px;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#function-column, #content-column {
|
||||
flex: 1;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="center">
|
||||
|
||||
<div id="#function-column">
|
||||
|
||||
<!-- header and options for making posts -->
|
||||
<div class="post" style="border-top-left-radius: 0; border-top-right-radius: 0;">
|
||||
<h1 style="margin-bottom: 4px;"><span style="color: var(--accent);">furp</span>social</h1>
|
||||
|
@ -79,6 +92,10 @@
|
|||
<span style="font-size: 12px; color: grey;">Privacy Policy: The only data collected by furpsocial server-side is the contents of your posts (signature and body text). This information is stored in our secure databases which are wiped of all post data every week. This data is only used to accomodate furpsocial as a social media platform. Client-side, furpsocial stores your most recently used signature as a cookie.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="#content-column">
|
||||
|
||||
<!-- save most recent signature as a cookie and autoload on page load -->
|
||||
<script>
|
||||
function logSignature() {
|
||||
|
@ -110,5 +127,9 @@
|
|||
fclose($myfile);
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in a new issue