This repository was archived by the owner on Feb 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (60 loc) · 1.26 KB
/
style.css
File metadata and controls
68 lines (60 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Estilos CSS personalizados */
:root {
--primary: #246e96;
--primary-dark: #1a5070;
--secondary: #4caf50;
--dark: #0a0a0a;
--dark-card: #161616;
--gray-custom: #2a2a2a;
--light-gray: #9e9e9e;
--text: #ffffff;
}
html {
scroll-behavior: smooth;
}
body {
background-color: var(--dark);
color: var(--text);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.text-gradient {
background: linear-gradient(135deg, #246e96, #4caf50);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.animate-fade-in-up {
animation: fadeInUp 0.8s ease-out both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.btn {
display: inline-block;
padding: 0.75rem 2rem;
border-radius: 9999px;
font-weight: 600;
color: white;
transition: all 0.3s;
border: 2px solid transparent;
}
.btn-primary {
background-color: var(--primary);
}
.btn-primary:hover {
background-color: var(--primary-dark);
}
.btn-secondary {
border-color: var(--primary);
}
.btn-secondary:hover {
background-color: var(--primary);
}