-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwindSidebar
61 lines (43 loc) · 2.14 KB
/
tailwindSidebar
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
<div class="h-screen grid grid-flow-row grid-cols-6 grid-rows-6 gap-1 bg-bg-bau">
<div id="sidebar" class="border-baublack border-x-4 border-y-4 my-1 row-span-full col-start-1">
<div id="sidebar-content" class="h-full grid grid-flow-col grid-rows-6 grid-cols-1 gap-2">
<div id="urls" class="row-start-1 row-end-3 mx-4">
<div class="border-baublue border-b-4 flex h-20 justify-center ">
<span class="font-primary font-semibold self-center">
INICIO
</span>
</div>
<div class="border-bauyellow border-b-4 flex h-20 justify-center ">
<span class="font-primary font-semibold self-center">
Alumnos
</span>
</div>
<div class="border-baured border-b-4 flex h-20 justify-center ">
<span class="font-primary font-semibold self-center">
Profesores
</span>
</div>
</div>
<div id="logo" class="mx-4 my-3 row-start-3 row-end-5 flex justify-center">
<span class="font-primary font-bold self-center">
Fichas
</span>
</div>
<div id="shapes" class="border-baublack row-start-5 row-end-7 mb-2 border-t-4 py-2 mx-7 grid grid-cols-1 grid-rows-3 gap-2 -mt-8 pt-4">
<div class="w-16 h-16 container text-w justify-self-center text-center text-sm">
<svg class="hover:transition-all hover:-rotate-90 transition-all" width="65" height="58" viewBox="0 0 65 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M32.5 0L64.5 58H0.5L32.5 0Z" fill="#FEC223"/>
</svg>
</div>
<div class="w-16 h-16 container justify-self-center text-center text-sm bg-baublue flex justify-center px-3 leading-4">
<span class=" self-center text-center text-white font-semibold">Mi Perfil</span>
</div>
<div class="w-16 h-16 justify-self-center text-white text-sm bg-baured flex rounded-full font-medium leading-3">
<span class="self-center text-center">Cerrar Sesion</span>
</div>
</div>
</div>
</div>
<div id="rightside" class="bg-baured row-span-full col-span-5 my-1">
</div>
</div>