Skip to content

Commit

Permalink
Adicionando apresentação e dados iniciais
Browse files Browse the repository at this point in the history
  • Loading branch information
oangelo committed Aug 19, 2024
1 parent 954ace8 commit 42a030a
Show file tree
Hide file tree
Showing 22,011 changed files with 2,048,927 additions and 1 deletion.
The diff you're trying to view is too large. We only load the first 3000 changed files.
29 changes: 29 additions & 0 deletions .github/workflows/deploy-revealjs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy Reveal.js Presentation to GitHub Pages

on:
push:
branches:
- main # ou master, dependendo da sua branch principal
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
force_orphan: true
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (C) 2011-2024 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.
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,34 @@
# Introducao-a-Robotica
# Curso de Introdução à Robótica

Bem-vindo ao repositório do curso de Introdução à Robótica! Este espaço servirá como hub central para todos os materiais, projetos e recursos relacionados ao nosso curso.

## Sobre o Curso

Este curso oferece uma introdução abrangente ao fascinante mundo da robótica. Através de um projeto colaborativo, os alunos explorarão diversos aspectos da robótica, desde conceitos fundamentais até aplicações avançadas e questões éticas.

## Objetivos de Aprendizagem

Ao final deste curso, os alunos serão capazes de:

- Compreender os princípios fundamentais da robótica
- Pesquisar e sintetizar informações sobre tópicos avançados em robótica
- Colaborar efetivamente em equipes usando ferramentas como GitHub
- Desenvolver e apresentar conteúdo técnico usando reveal.js
- Avaliar criticamente o trabalho de pares usando rubricas desenvolvidas colaborativamente

## Estrutura do Projeto

O projeto principal do curso envolve:

1. Formação de grupos de 3 alunos
2. Escolha de um tema principal em robótica
3. Divisão do tema em pelo menos 3 subtemas
4. Pesquisa e desenvolvimento de conteúdo para cada subtema
5. Criação de uma apresentação em reveal.js
6. Apresentação final e avaliação por pares

## Como Usar Este Repositório

1. **Fork do Repositório**: Cada grupo deve fazer um fork deste repositório para sua própria conta do GitHub.

4. **Pull Requests**: Use pull requests para revisão de código e mesclagem de conteúdo entre branches.
70 changes: 70 additions & 0 deletions css/layout.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/**
* 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;
grid-template-rows: 100%;
}

.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; }
166 changes: 166 additions & 0 deletions css/print/paper.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@

@media print {
html:not(.print-pdf) {
overflow: visible;
width: auto;
height: auto;

body {
margin: 0;
padding: 0;
overflow: visible;
}
}

html:not(.print-pdf) .reveal {
background: #fff;
font-size: 20pt;

.controls,
.state-background,
.progress,
.backgrounds,
.slide-number {
display: none !important;
}

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;
}

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;
}
pre,
table {
margin-left: 0;
margin-right: 0;
}
pre code {
padding: 20px;
}
blockquote {
margin: 20px 0;
}

.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%;
}
.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;
}
.slides section.stack {
padding: 0 !important;
}
.slides section:last-of-type {
page-break-after: avoid !important;
}
.slides section .fragment {
opacity: 1 !important;
visibility: visible !important;

transform: none !important;
}

.r-fit-text {
white-space: normal !important;
}

section img {
display: block;
margin: 15px 0px;
background: rgba(255,255,255,1);
border: 1px solid #666;
box-shadow: none;
}

section small {
font-size: 0.8em;
}

.hljs {
max-height: 100%;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-word;
font-size: 15pt;
}

.hljs .hljs-ln-numbers {
white-space: nowrap;
}

.hljs td {
font-size: inherit !important;
color: inherit !important;
}
}
}
Loading

0 comments on commit 42a030a

Please sign in to comment.