-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (103 loc) · 2.35 KB
/
index.html
File metadata and controls
118 lines (103 loc) · 2.35 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>KineosView | Inicio</title>
<style>
@font-face {
font-family: 'Lemon Milk';
src: url('assets/fonts/LEMONMILK-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Lemon Milk Bolt';
src: url('assets/fonts/LEMONMILK-Bolt.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'Lemon Milk', sans-serif;
text-align: center;
background-color: #ffffff;
padding: 40px;
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex-grow: 1;
}
img {
max-width: 300px;
margin-bottom: 10px;
}
.separator {
width: 60%;
height: 2px;
background-color: #007acc;
margin: 20px auto;
border-radius: 1px;
}
.projects-box {
display: inline-block;
padding: 10px 20px;
border: 2px solid #007acc;
border-radius: 15px;
margin-bottom: 20px;
}
.projects-info {
font-family: 'Lemon Milk Bolt', sans-serif;
font-size: 1.5em;
color: #007acc;
font-weight: 600;
margin: 0;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
.project-link {
display: inline-block;
padding: 8px 16px;
border: 2px solid #007acc;
border-radius: 12px;
font-size: 1.1em;
color: #007acc;
text-decoration: none;
transition: background-color 0.2s, color 0.2s;
}
.project-link:hover {
background-color: #007acc;
color: white;
}
footer {
margin-top: 40px;
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<main>
<a href="https://inbiodroid.com/" target="_blank" rel="noopener">
<img src="assets/img/logo2.png" alt="Logo de KineosView">
</a>
<div class="separator"></div>
<!-- <div class="projects-box"> -->
<p class="projects-info">Proyectos</p>
</div>
<ul>
<li>
<a class="project-link" href="https://inbiodroid.com/prom2.html" target="_blank" rel="noopener">
Prometheus
</a>
</li>
<li><a class="project-link" href="exokineos/">Exo-Kineos</a></li>
</ul>
</main>
</body>
</html>