-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactividad.html
More file actions
104 lines (99 loc) · 3.72 KB
/
Copy pathactividad.html
File metadata and controls
104 lines (99 loc) · 3.72 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
<!DOCTYPE html>
<html lang="es">
<head>
<link rel="apple-touch-icon" href="./assets/imgs/isotipo.png" />
<meta name="theme-color" content="rgb(13, 5, 47)" />
<meta name="robots" content="index,follow" />
<meta
name="description"
content="MILRI Herramienta que permite agendar eventos, fechas importantes y hacer avisos, para una mejor organización y conocimiento de estos."
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mi actividad</title>
<link rel="icon" href="./assets/imgs/isotipo.png" />
<link rel="preload" as="style" href="./styles/style.css" />
<link rel="preload" as="style" href="./styles/headerFooter.css" />
<link rel="preload" as="style" href="./styles/tablet.css" media="screen and (max-width:812px)" />
<link rel="preload" as="style" href="./styles/mobile.css" media="screen and (max-width: 568px)" />
<link rel="stylesheet" as="style" href="./styles/style.css" />
<link rel="stylesheet" as="style" href="./styles/headerFooter.css" />
<link rel="stylesheet"as="style" href="./styles/tablet.css" media="screen and (max-width:812px)" />
<link rel="stylesheet" as="style" href="./styles/mobile.css" media="screen and (max-width: 568px)" />
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./styles/headerFooter.css" />
<style>
body {
background-color: var(--dark-color);
}
main {
display: grid;
grid-template-columns: minmax(auto, 1440px);
justify-content: center;
}
.noLogin {
color: white;
}
.profile--container {
font-size: 1.6rem;
height: calc(100% - 69px);
}
.eventos_usuario--container {
justify-content: center;
display: flex;
flex-wrap: wrap;
}
.btns--container {
z-index: 10;
}
.eliminar--btn,
.editar--btn {
border: 1px solid;
background-color: transparent;
color: #fafafa;
font-size: 1.4rem;
outline: none;
height: 30px;
padding: 0 10px;
border-radius: 5px;
}
.eliminar--btn:active,
.editar--btn:active {
transform: scale(0.8);
transition: all 0.2s;
}
</style>
</head>
<body>
<header></header>
<main>
<div class="profile--container" style="margin-top: 70px">
<section class="eventos_usuario--container">
<figure>
<img src="./assets/imgs/update.gif" width="200" alt="Cargando" />
</figure>
</section>
</div>
</main>
<footer></footer>
<script defer src="https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js" ></script>
<script defer src="https://www.gstatic.com/firebasejs/8.0.0/firebase-analytics.js" ></script>
<script defer src="https://www.gstatic.com/firebasejs/8.0.0/firebase-auth.js" ></script>
<script defer src="https://www.gstatic.com/firebasejs/8.0.0/firebase-firestore.js" ></script>
<script defer src="https://www.gstatic.com/firebasejs/8.0.0/firebase-storage.js" ></script>
<script defer type="text/javascript" src="./js/config/ConfigFirebase.js" ></script>
<script defer type="module" src="./js/main.js"></script>
<script defer type="text/javascript" src="./js/modalController.js"></script>
<script defer type="text/javascript" src="./js/modals.js"></script>
<script defer src="./js/actividad/index.js"></script>
<!-- Start of HubSpot Embed Code -->
<!-- <script
type="text/javascript"
id="hs-script-loader"
defer
async
src="//js.hs-scripts.com/8894378.js"
></script> -->
<!-- End of HubSpot Embed Code -->
</body>
</html>