My Streamline
These changes apply to everyone. DO NOT mess with it unless you are positive you are doing something you should be doing
Backhead -> Platform Variables
welcome-screen-alert - Top bar of My Streamline page
welcome-screen-spotlight - Right column of My Streamline page
welcome-screen-tribes-callout - Bottom section of My Streamline page
Styles will be brought over automatically! All you need to get started:
<body>
<div class="card">
Information here!
</div>
</body>
Kurt pointed out that the margin was off by 10 on the welcome-screen-spotlight. If needed, here is more code with another class created to push just that one down a bit:
<style>
.webinar .card {
margin: 30px 0;
}
</style>
<body>
<div class="webinar">
<div class="card">
Information here!
</div>
</div>
</body>