-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (97 loc) · 1.95 KB
/
Copy pathstyles.css
File metadata and controls
109 lines (97 loc) · 1.95 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
* {
scroll-behavior: smooth;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
flex-direction: column;
flex-wrap: wrap;
background-color: #39798a;
}
#particles-js {
width: 100vw;
height: 70vh;
background-color: #2e3b4b;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid #176b87;
opacity: 0.9;
}
#typewriter {
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -60px);
font-size: 3rem;
line-height: 3rem;
color: #fff;
text-align: center;
font-family: "Roboto", sans-serif;
font-weight: 500;
clip: auto;
z-index: 1;
background: -webkit-linear-gradient(#41c9e2, #ace2e1);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
#typewriter2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 20px);
font-size: 2rem;
line-height: 3rem;
color: #fff;
text-align: center;
font-family: "Roboto", sans-serif;
font-weight: 500;
z-index: 1;
background: -webkit-linear-gradient(#41c9e2, #ace2e1);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
footer {
color: #fff;
padding: 20px 0;
text-align: center;
margin-top: auto; /* Mover el footer al final */
width: 100%;
}
footer section {
display: flex;
justify-content: center; /* Centrar los elementos del footer */
}
footer ul {
list-style: none;
padding: 0;
}
footer ul li {
display: inline-block;
margin: 0 10px;
}
footer ul li a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
border: 1px solid #fff;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
footer ul li a:hover {
background-color: #fff;
color: #333;
}
/* Media query para tablet */
@media only screen and (min-width: 768px) {
}
/* Media query para escritorio */
@media only screen and (min-width: 1200px) {
#typewriter {
top: 50%;
}
}