-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesignPr.css
More file actions
153 lines (136 loc) · 2.82 KB
/
designPr.css
File metadata and controls
153 lines (136 loc) · 2.82 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* Animación de fondo fractal */
@keyframes fractalAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.index{
background: linear-gradient(45deg,
#0a0a2e 0%,
#16213e 15%,
#0f3460 30%,
#533483 45%,
#16213e 60%,
#0a0a2e 75%,
#1a1a3e 90%,
#0a0a2e 100%);
background-size: 400% 400%;
animation: fractalAnimation 3s ease infinite;
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
min-height: 100vh;
}
.grafico{
background-image: url("IMGS/fractalFondoGrafico.jpg");
background-size: cover;
background-attachment: fixed;
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
}
/* Container para mejorar legibilidad */
div {
background-color: rgba(0, 0, 0, 0.8);
padding: 20px;
margin: 20px auto;
max-width: 900px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
h1{
color: #FFD700;
text-align: center;
font-size: 2.5em;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
h2{
color: #00FFFF;
text-align: center;
font-size: 1.8em;
margin-top: 20px;
margin-bottom: 15px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
p{
color: #F0F8FF;
text-align: justify;
font-size: 1.1em;
line-height: 1.8;
margin: 15px 0;
padding: 0 15px;
}
table{
margin: 20px auto;
color: #F0F8FF;
border-collapse: collapse;
background-color: rgba(0, 0, 0, 0.5);
}
table th, table td {
padding: 10px 15px;
border: 1px solid #00FFFF;
}
table th {
background-color: rgba(0, 255, 255, 0.2);
font-weight: bold;
}
h3{
text-align: center;
color: white;
font-size: 1.5em;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
center {
margin: 20px 0;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
a {
color: #00FFFF;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #FFD700;
text-decoration: underline;
}
/* Estilos para el canvas de Mandelbrot */
#mandelbrotCanvas {
display: block;
margin: 20px auto;
border: 3px solid #00FFFF;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
/* Estilos para el contenedor del video */
.video-container {
position: relative;
padding-bottom: 56.25%; /* Aspect ratio 16:9 */
height: 0;
overflow: hidden;
max-width: 100%;
margin: 20px auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 255, 255, 0.4);
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
}