CoolFace
Apppublic

eshansendo/todosnake-python-task-tamer

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
style.css45 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}6 7#g_id_onload, .g_id_signin {8    margin: 0 auto;9}10/* Todo App Styles */11.task-item {12    transition: all 0.2s ease;13}14 15.task-item:hover {16    transform: translateY(-2px);17    box-shadow: 0 2px 4px rgba(0,0,0,0.1);18}19 20.complete-btn, .delete-btn {21    transition: transform 0.2s ease;22}23 24.complete-btn:hover, .delete-btn:hover {25    transform: scale(1.1);26}27 28/* Custom scrollbar */29::-webkit-scrollbar {30    width: 8px;31    height: 8px;32}33 34::-webkit-scrollbar-track {35    background: #f1f1f1;36}37 38::-webkit-scrollbar-thumb {39    background: #888;40    border-radius: 4px;41}42 43::-webkit-scrollbar-thumb:hover {44    background: #555;45}