-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
204 changed files
with
21,098 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Formación en Centros 23-24 | ||
|
||
<p align="center"> | ||
<img src="assets/portada-fc-24-25.png" alt="Logo" width="400"> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://github.com/IES-Rafael-Alberti/formacion-centros-24-25/pulls"> | ||
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?longCache=true" alt="Pull Requests"> | ||
</a> | ||
<a href="LICENSE"> | ||
<img src="https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg?longCache=true" alt="CC BY-SA License"> | ||
</a> | ||
</p> | ||
|
||
Repositorio para alojar materiales de la Formación en Centros del curso 2024-2025. | ||
|
||
* [Diapositivas - Sesión 2](slides/sesion2.html) | ||
* [Diapositivas - Sesión 3](slides/sesion3.html) | ||
* [Diapositivas - Sesión 4](slides/sesion4.html) | ||
* [Diapositivas - Sesión 5](slides/sesion5.html) | ||
* [Diapositivas - Sesión 6](slides/sesion6.html) | ||
|
||
[cc-by-sa]: http://creativecommons.org/licenses/by-sa/4.0/ | ||
[cc-by-sa-image]: https://licensebuttons.net/l/by-sa/4.0/88x31.png | ||
[cc-by-sa-shield]: https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg | ||
|
||
Todos los materiales generados están bajo una | ||
[Licencia Creative Commons Attribution-ShareAlike 4.0 International][cc-by-sa]. | ||
|
||
<p align="center"> <a href="http://creativecommons.org/licenses/by-sa/4.0/"> | ||
<img src="https://licensebuttons.net/l/by-sa/4.0/88x31.png" alt="BY-SA"> | ||
</a> </p> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (C) 2011-2022 Hakim El Hattab, http://hakim.se, and reveal.js contributors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/** | ||
* Layout helpers. | ||
*/ | ||
|
||
// Stretch an element vertically based on available space | ||
.reveal .stretch, | ||
.reveal .r-stretch { | ||
max-width: none; | ||
max-height: none; | ||
} | ||
|
||
.reveal pre.stretch code, | ||
.reveal pre.r-stretch code { | ||
height: 100%; | ||
max-height: 100%; | ||
box-sizing: border-box; | ||
} | ||
|
||
// Text that auto-fits its container | ||
.reveal .r-fit-text { | ||
display: inline-block; // https://github.com/rikschennink/fitty#performance | ||
white-space: nowrap; | ||
} | ||
|
||
// Stack multiple elements on top of each other | ||
.reveal .r-stack { | ||
display: grid; | ||
} | ||
|
||
.reveal .r-stack > * { | ||
grid-area: 1/1; | ||
margin: auto; | ||
} | ||
|
||
// Horizontal and vertical stacks | ||
.reveal .r-vstack, | ||
.reveal .r-hstack { | ||
display: flex; | ||
|
||
img, video { | ||
min-width: 0; | ||
min-height: 0; | ||
object-fit: contain; | ||
} | ||
} | ||
|
||
.reveal .r-vstack { | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.reveal .r-hstack { | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
// Naming based on tailwindcss | ||
.reveal .items-stretch { align-items: stretch; } | ||
.reveal .items-start { align-items: flex-start; } | ||
.reveal .items-center { align-items: center; } | ||
.reveal .items-end { align-items: flex-end; } | ||
|
||
.reveal .justify-between { justify-content: space-between; } | ||
.reveal .justify-around { justify-content: space-around; } | ||
.reveal .justify-start { justify-content: flex-start; } | ||
.reveal .justify-center { justify-content: center; } | ||
.reveal .justify-end { justify-content: flex-end; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
/* Default Print Stylesheet Template | ||
by Rob Glazebrook of CSSnewbie.com | ||
Last Updated: June 4, 2008 | ||
Feel free (nay, compelled) to edit, append, and | ||
manipulate this file as you see fit. */ | ||
|
||
@media print { | ||
html:not(.print-pdf) { | ||
|
||
background: #fff; | ||
width: auto; | ||
height: auto; | ||
overflow: visible; | ||
|
||
body { | ||
background: #fff; | ||
font-size: 20pt; | ||
width: auto; | ||
height: auto; | ||
border: 0; | ||
margin: 0 5%; | ||
padding: 0; | ||
overflow: visible; | ||
float: none !important; | ||
} | ||
|
||
.nestedarrow, | ||
.controls, | ||
.fork-reveal, | ||
.share-reveal, | ||
.state-background, | ||
.reveal .progress, | ||
.reveal .backgrounds, | ||
.reveal .slide-number { | ||
display: none !important; | ||
} | ||
|
||
body, p, td, li { | ||
font-size: 20pt!important; | ||
color: #000; | ||
} | ||
|
||
h1,h2,h3,h4,h5,h6 { | ||
color: #000!important; | ||
height: auto; | ||
line-height: normal; | ||
text-align: left; | ||
letter-spacing: normal; | ||
} | ||
|
||
/* Need to reduce the size of the fonts for printing */ | ||
h1 { font-size: 28pt !important; } | ||
h2 { font-size: 24pt !important; } | ||
h3 { font-size: 22pt !important; } | ||
h4 { font-size: 22pt !important; font-variant: small-caps; } | ||
h5 { font-size: 21pt !important; } | ||
h6 { font-size: 20pt !important; font-style: italic; } | ||
|
||
a:link, | ||
a:visited { | ||
color: #000 !important; | ||
font-weight: bold; | ||
text-decoration: underline; | ||
} | ||
|
||
ul, ol, div, p { | ||
visibility: visible; | ||
position: static; | ||
width: auto; | ||
height: auto; | ||
display: block; | ||
overflow: visible; | ||
margin: 0; | ||
text-align: left !important; | ||
} | ||
.reveal pre, | ||
.reveal table { | ||
margin-left: 0; | ||
margin-right: 0; | ||
} | ||
.reveal pre code { | ||
padding: 20px; | ||
} | ||
.reveal blockquote { | ||
margin: 20px 0; | ||
} | ||
.reveal .slides { | ||
position: static !important; | ||
width: auto !important; | ||
height: auto !important; | ||
|
||
left: 0 !important; | ||
top: 0 !important; | ||
margin-left: 0 !important; | ||
margin-top: 0 !important; | ||
padding: 0 !important; | ||
zoom: 1 !important; | ||
transform: none !important; | ||
|
||
overflow: visible !important; | ||
display: block !important; | ||
|
||
text-align: left !important; | ||
perspective: none; | ||
|
||
perspective-origin: 50% 50%; | ||
} | ||
.reveal .slides section { | ||
visibility: visible !important; | ||
position: static !important; | ||
width: auto !important; | ||
height: auto !important; | ||
display: block !important; | ||
overflow: visible !important; | ||
|
||
left: 0 !important; | ||
top: 0 !important; | ||
margin-left: 0 !important; | ||
margin-top: 0 !important; | ||
padding: 60px 20px !important; | ||
z-index: auto !important; | ||
|
||
opacity: 1 !important; | ||
|
||
page-break-after: always !important; | ||
|
||
transform-style: flat !important; | ||
transform: none !important; | ||
transition: none !important; | ||
} | ||
.reveal .slides section.stack { | ||
padding: 0 !important; | ||
} | ||
.reveal section:last-of-type { | ||
page-break-after: avoid !important; | ||
} | ||
.reveal section .fragment { | ||
opacity: 1 !important; | ||
visibility: visible !important; | ||
|
||
transform: none !important; | ||
} | ||
|
||
.reveal .r-fit-text { | ||
white-space: normal !important; | ||
} | ||
|
||
.reveal section img { | ||
display: block; | ||
margin: 15px 0px; | ||
background: rgba(255,255,255,1); | ||
border: 1px solid #666; | ||
box-shadow: none; | ||
} | ||
|
||
.reveal section small { | ||
font-size: 0.8em; | ||
} | ||
|
||
.reveal .hljs { | ||
max-height: 100%; | ||
white-space: pre-wrap; | ||
word-wrap: break-word; | ||
word-break: break-word; | ||
font-size: 15pt; | ||
} | ||
|
||
.reveal .hljs .hljs-ln-numbers { | ||
white-space: nowrap; | ||
} | ||
|
||
.reveal .hljs td { | ||
font-size: inherit !important; | ||
color: inherit !important; | ||
} | ||
} | ||
} |
Oops, something went wrong.