Widget:QuestCard: Difference between revisions
From Makerpedia
No edit summary |
No edit summary |
||
| Line 10: | Line 10: | ||
.questCard{ | .questCard{ | ||
position: relative; | position: relative; | ||
background- | background-color: var(--cc-blue); | ||
width:500px; | width:500px; | ||
height: 400px; | height: 400px; | ||
Revision as of 02:50, 31 March 2025
<script> var app = ()=>{
console.log('test');
}
if(!window.widgets) window.widgets = []; window.widgets.push(app); </script> <style> .questCard{
position: relative; background-color: 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>