Widget:QuestCard: Difference between revisions

From Makerpedia

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..."
 
No edit summary
Line 10: Line 10:
.questCard{
.questCard{
   position: relative;
   position: relative;
   backgroundColor: var(--cc-blue);
   background-olor: var(--cc-blue);
   width:500px;
   width:500px;
   height: 400px;
   height: 400px;
Line 23: Line 23:
   top: 60px;
   top: 60px;
   width: 480px;
   width: 480px;
   height: 350px;
   height: 330px;
}
}
</style>
</style>

Revision as of 02:49, 31 March 2025

<script> var app = ()=>{

 console.log('test');

}

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

 position: relative;
 background-olor: 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: 330px;

} </style>