CoolFace
Apppublic

MuniaAbdalla/project-develop-a-comprehensive-ne

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
style.css23 linesDownload Raw Back to root
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');2 3body {4    font-family: 'Inter', sans-serif;5    min-height: 100vh;6    display: flex;7    flex-direction: column;8}9 10/* Drag and drop styles */11[draggable] {12    user-select: none;13    -webkit-user-drag: element;14}15 16.drop-zone {17    transition: background-color 0.3s;18}19 20.drop-zone.active {21    background-color: #e0e7ff;22    border-color: #818cf8;23}