forked from jairomr/saturno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent_selected.html
More file actions
67 lines (67 loc) · 2.33 KB
/
event_selected.html
File metadata and controls
67 lines (67 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spacedevs Schedule</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/uikit@3.4.6/dist/css/uikit.min.css"
/>
<link rel="stylesheet" href="custom.css" />
</head>
<body class="site uk-blackground-black-bis">
<main class="site-container">
<section class="uk-section uk-section-large">
<div class="uk-container uk-container-large">
<div>
<h2 class="uk-margin-large-bottom uk-text-center uk-light">
Evento escolhido pela comunidade
<span uk-icon="arrow-right"></span>
</h2>
</div>
<div
class="uk-child-width-1-2@m uk-grid-match uk-flex-center"
id="event_day"
uk-grid
>
<div>
<a
class="uk-display-block uk-link-toggle uk-card uk-card-large uk-card-default uk-card-body uk-border-rounded"
>
<div>
<h3 class="uk-card-title uk-margin-remove-bottom">
<div
class="uk-circle uk-background-danger uk-margin-medium-bottom"
></div>
Incorporando Docker em projetos Python
</h3>
<span
class="uk-text-muted uk-text-lowercase uk-margin-small-top"
>
+100 votos
</span>
</div>
</a>
</div>
</div>
<div class="uk-margin-large-top">
<h2 class="uk-text-center uk-light">
Dia do evento
<span uk-icon="arrow-right"></span>
</h2>
<h1 class="uk-light uk-text-center">
23, outubro de 2020 - às 20:30 na
<br />
<a href="https://twitch.tv/spacedevs" class="uk-text-purple">
twitch.tv/spacedevs
</a>
</h1>
</div>
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/uikit@3.4.6/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/uikit@3.4.6/dist/js/uikit-icons.min.js"></script>
</body>
</html>