Widget:QuestCard

From Makerpedia

Revision as of 21:52, 30 March 2025 by Ajhg (talk | contribs) (Created page with "<script> var app = ()=>{ console.log('test'); } if(!window.widgets) window.widgets = []; window.widgets.push(app); </script> <style> .questCard{ position: relative; backgroundColor: var(--cc-blue); width:500px; height: 400px; border-radius: 20px; } .questContent { background-color: var(--cc-white); border-radius: 15px; position: absolute; left: 10px; top: 60px; width: 480px; height: 350px; } </style> <div class="questCard" id="quest<!--{$categ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<script> var app = ()=>{

 console.log('test');

}

if(!window.widgets) window.widgets = []; window.widgets.push(app); </script> <style> .questCard{

 position: relative;
 backgroundColor: var(--cc-blue);
 width:500px;
 height: 400px;
 border-radius: 20px;

}

.questContent {

 background-color: var(--cc-white);
 border-radius: 15px;
 position: absolute;
 left: 10px;
 top: 60px;
 width: 480px;
 height: 350px;

} </style>