File size: 283 Bytes
b7c00ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
```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);
}
```