xlorfx commited on
Commit
7c1907e
·
verified ·
1 Parent(s): 8f46c7d

Delete static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +0 -39
static/css/style.css DELETED
@@ -1,39 +0,0 @@
1
- /* Estilos base */
2
- body {
3
- font-family: 'Inter', sans-serif;
4
- }
5
-
6
- /* Componentes específicos */
7
- .btn-primary {
8
- background-color: #7c3aed;
9
- color: white;
10
- padding: 0.5rem 1rem;
11
- border-radius: 0.375rem;
12
- font-weight: 500;
13
- transition: background-color 0.2s;
14
- }
15
-
16
- .btn-primary:hover {
17
- background-color: #6d28d9;
18
- }
19
-
20
- .input-field {
21
- width: 100%;
22
- padding: 0.5rem 0.75rem;
23
- border: 1px solid #d1d5db;
24
- border-radius: 0.375rem;
25
- transition: border-color 0.2s;
26
- }
27
-
28
- .input-field:focus {
29
- outline: none;
30
- border-color: #7c3aed;
31
- box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
32
- }
33
-
34
- /* Responsividade */
35
- @media (max-width: 768px) {
36
- .mobile-flex-col {
37
- flex-direction: column;
38
- }
39
- }