-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfeed.qmd
More file actions
37 lines (28 loc) · 1.04 KB
/
feed.qmd
File metadata and controls
37 lines (28 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
title: "Social Media Feed"
---
<link rel="stylesheet" type="text/css" href="/assets/toots-v2.css">
<style>
/* Customize the overall width and text size of the feed */
.toots {
max-width: 100%; /* Adjust this value (e.g., 600px, 80%) as needed */
margin: 0 auto !important; /* Centers the feed on the page */
font-size: 1.1rem; /* Increases the text size of the feed */
}
/* Customize the vertical size of each individual toot */
.toot {
padding-top: 2rem !important; /* Increases the top padding */
padding-bottom: 2rem !important; /* Increases the bottom padding */
/* min-height: 1000px; Uncomment this if you want to force a specific minimum height */
}
/* Hide the @username handle, leaving only the display name */
.toot .username {
display: none !important;
}
</style>
<a class="mastodon-feed"
href="https://mastodon.social/@stemcoding"
data-toot-limit="20"
data-exclude-replies="true"
>STEM Coding Mastodon feed</a>
<script type="module" src="/assets/js/emfed-bundle-v2.js"></script>