├── README.md ├── assets ├── assinatura-gui.png ├── assinatura-ju.png ├── gamedev-logo.png ├── assinatura-paulo.png ├── gamedev-logo-png.png ├── gamedev-logo-hipster-1.png ├── gamedev-logo-hipster-2.png └── logo-alura.svg ├── reset.css ├── index.css └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # certificado da Imersão Gamedev JavaScript 2 | -------------------------------------------------------------------------------- /assets/assinatura-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/assinatura-gui.png -------------------------------------------------------------------------------- /assets/assinatura-ju.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/assinatura-ju.png -------------------------------------------------------------------------------- /assets/gamedev-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/gamedev-logo.png -------------------------------------------------------------------------------- /assets/assinatura-paulo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/assinatura-paulo.png -------------------------------------------------------------------------------- /assets/gamedev-logo-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/gamedev-logo-png.png -------------------------------------------------------------------------------- /assets/gamedev-logo-hipster-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/gamedev-logo-hipster-1.png -------------------------------------------------------------------------------- /assets/gamedev-logo-hipster-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imersao-gamedev/certificado/HEAD/assets/gamedev-logo-hipster-2.png -------------------------------------------------------------------------------- /reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } 49 | a { 50 | text-decoration: none; 51 | } 52 | -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap'); 2 | 3 | :root { 4 | --blue: #807FCB; 5 | --black: #000; 6 | --gray: #525f6b; 7 | --dark-gray: #3c3c4a; 8 | --white: #f5f5f5; 9 | 10 | --bg-color: var(--dark-gray); 11 | } 12 | 13 | body { 14 | align-items: center; 15 | background-color: var(--bg-color); 16 | box-sizing: border-box; 17 | color: var(--gray); 18 | display: flex; 19 | font-family: 'Open Sans', sans-serif; 20 | min-height: 100vh; 21 | justify-content: center; 22 | width: 100vw; 23 | } 24 | 25 | .container { 26 | background-color: var(--white); 27 | border-bottom: 5px solid var(--blue); 28 | border-radius: .75rem; 29 | padding: 2rem; 30 | margin: 1rem; 31 | text-align: center; 32 | } 33 | 34 | .logos { 35 | display: flex; 36 | justify-content: space-between; 37 | } 38 | 39 | .logo-container { 40 | padding: 1rem; 41 | } 42 | 43 | .logo { 44 | margin: 5px; 45 | height: 50px; 46 | width: auto; 47 | } 48 | 49 | .titulo { 50 | font-weight: bold; 51 | color: var(--blue); 52 | font-size: 4rem; 53 | text-transform: uppercase; 54 | 55 | } 56 | 57 | .conclusao { 58 | margin: 2rem 1rem; 59 | } 60 | 61 | .aluno { 62 | color: var(--blue); 63 | font-size: 2rem; 64 | font-weight: light; 65 | margin-bottom: 1rem; 66 | } 67 | 68 | .conclusao-texto { 69 | margin-bottom: 1rem; 70 | max-width: 1000px; 71 | } 72 | 73 | .conclusao-link { 74 | color: var(--blue); 75 | } 76 | 77 | iframe { 78 | min-width: 80%; 79 | min-height: 40vh; 80 | 81 | } 82 | .assinaturas { 83 | display: flex; 84 | align-items: center; 85 | justify-content: center; 86 | margin: 1rem; 87 | } 88 | 89 | .assinatura-container { 90 | display: flex; 91 | flex-direction: column; 92 | margin-left: 1rem; 93 | margin-right: 1rem; 94 | } 95 | 96 | .assinatura { 97 | border-bottom: 2px solid var(--dark-gray); 98 | margin-bottom: 10px; 99 | max-height: 30px; 100 | padding-bottom: 5px; 101 | } 102 | 103 | .assinatura-nome { 104 | text-decoration: none; 105 | color: inherit; 106 | } 107 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Certificado Imersão Gamedev Javascript 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 21 |
22 | 23 | 24 |
25 |
26 | 27 |

Certificado Alura

28 |
29 | 30 |
31 |

Juliana Negreiros

32 | 33 |

34 | Você concluiu a 35 | 36 | Imersão Gamedev JavaScript 37 | 38 | dos dias 22 a 26 de junho, com o conteúdo de 1h/dia, e recebe esse certificado como reconhecimento do seu desempenho. 39 |

40 | 41 |

42 | Aqui está o seu jogo e 43 | 44 | outros cursos de desenvolvimento de jogos na Alura 45 | . 46 |

47 | 48 |
49 | 50 | 69 |
70 | 71 | 72 | -------------------------------------------------------------------------------- /assets/logo-alura.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------