columnize

This commit is contained in:
awesomeuser 2023-08-02 22:31:51 +00:00
parent f768b6f7ac
commit 8e015a1405

View file

@ -23,8 +23,6 @@
.post { .post {
width: 100%; width: 100%;
max-width: 600px;
margin: auto;
background: white; background: white;
padding: 10px; padding: 10px;
box-sizing: border-box; box-sizing: border-box;
@ -55,17 +53,32 @@
} }
#refresh { #refresh {
max-width: 120px; width: 120px;
margin: auto;
font-weight: 600; font-weight: 600;
text-align: center; text-align: center;
padding: 5px; padding: 5px;
color: var(--accent); color: var(--accent);
cursor: pointer; cursor: pointer;
} }
#center {
max-width: 1200px;
margin: auto;
display: flex;
}
#function-column, #content-column {
flex: 1;
}
</style> </style>
</head> </head>
<body> <body>
<div id="center">
<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;">
<h1 style="margin-bottom: 4px;"><span style="color: var(--accent);">furp</span>social</h1> <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> <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>
<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>
function logSignature() { function logSignature() {
@ -110,5 +127,9 @@
fclose($myfile); fclose($myfile);
?> ?>
</div>
</div>
</body> </body>
</html> </html>