-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
132 lines (113 loc) · 2.28 KB
/
Copy pathindex.css
File metadata and controls
132 lines (113 loc) · 2.28 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
.say-hi{
background: linear-gradient(92deg, #83DAD5 15.07%, #E12885 69.31%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.normal-text {
font-family: 'Inter', sans-serif;
color: #ffffff;
font-weight: 300;
}
.text-section{
font-family: 'Lato', sans-serif;
color: #ffffff;
font-weight: 400;
}
html {
scroll-behavior: smooth;
}
#ascii {
white-space: pre;
font-family: monospace;
font-size: 8px;
line-height: 8px;
color: #E0E0E0;
background-color: black;
text-align: center;
margin: 0 auto;
background: rgba(0, 0, 0, 0.8);
}
#full-stars {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#ascii-gif {
backdrop-filter: blur(2px);
}
.tech-stack{
background: linear-gradient(90deg,#E12885 15.07%, #83DAD5 69.31%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
body {
overflow-x: hidden;
}
.scale-on-hover {
transition: transform 0.3s ease;
will-change: transform;
}
.scale-on-hover:hover {
transform: scale(1.05);
}
#projects {
position: relative;
overflow: hidden;
}
#projects-stars {
position: absolute;
inset: 0;
z-index: -1;
pointer-events: none;
}
.animate-on-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* Cuando está visible */
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 640px) {
body, html {
overflow-x: hidden !important;
max-width: 100vw;
}
.px-8 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.text-8xl {
font-size: 2.5rem !important;
line-height: 1.1 !important;
}
.ml-10 {
margin-left: 0 !important;
}
.w-\[1000px\] {
width: 100vw !important;
min-width: 0 !important;
max-width: 100vw !important;
}
img, video, model-viewer {
max-width: 100%;
height: auto;
}
.max-w-6xl, .max-w-xl {
max-width: 100vw !important;
}
.px-4 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.mi-grid-ancha {
width: 350vw !important;
max-width: none !important;
}
}