-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
77 lines (65 loc) · 1.63 KB
/
index.html
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
<!DOCTYPE html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/*fira-sub*/
@import url(/sofi/fonts/Roboto-regular.css);
body {
margin: 0;
padding: 1em;
background-color: #0f172a;
color: #cbd5e1;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}
.index {
max-width: 1080px;
margin: auto;
}
a {
text-decoration: none;
color: hsl(12, 95%, 95%);;
}
.breadcrumb {
display: flex;
gap: 0px;
padding: 0.5em 0em 0.5em 0em;
background: #193880;
}
.breadcrumb li {
display: flex;
}
.breadcrumb a {
padding: 0 1em;
}
.breadcrumb li::after {
content: "/";
display:block;
}
div.item {
padding: 1em;
margin: 0.5em 0;
background-color: #1b2538;
}
</style>
<div class="index">
<h1>⌂</h1>
<div class="items">
<a href="/dam">
<div class="item">
<span>CFGS Desenvolupament d'aplicacions multiplataforma</span>
</div>
</a><a href="/asix">
<div class="item">
<span>CFGS Administració de sistemes informàtics en xarxa</span>
</div>
</a><a href="/daw">
<div class="item">
<span>CFGS Desenvolupament d'aplicacions web</span>
</div>
</a><a href="/smx">
<div class="item">
<span>CFGM Sistemes microinformàtics i xarxes</span>
</div>
</a>
</div>
</div>