codecraft-studio / src /styles.css
Prototype69's picture
give me the files so that i can open project in any other ide
b7c00ac verified
raw
history blame contribute delete
283 Bytes
```css
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Fira Code', monospace;
background: linear-gradient(135deg, #007ACC 0%, #1e1e1e 100%);
}
.file-icon {
transition: all 0.3s ease;
}
.file-icon:hover {
transform: scale(1.1);
}
```