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
# Seu Primeiro Projeto – Um Questinário Dinâmico # | |
Nesse momento, você já aprendeu o suficiente para construir uma sólida aplicação. Não prossiga nada além disso até você conseguir construir com sucesso essa aplicação que descrevi abaixo. Se você estiver com dificuldades, faça perguntas no Stack Overflow e releia as seções do livro para entender corretamente os conceitos. | |
Você irá construir uma aplicação de questionário javascript (você vai usar html e css também) que funcionará da seguinte forma: | |
– Este é um simples questionário com botões de escolha do tipo radio, que vai mostrar ao usuário sua pontuação na competição. | |
– O questionário poderá ter quaisquer quantidades de questões e escolhas. |
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
Semana 05 |
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
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var cssnano = require('gulp-cssnano'); | |
gulp.task('nano', function() { | |
return gulp.src('../assets/css/all.css') | |
.pipe(cssnano()) | |
.pipe(gulp.dest('../')); | |
}); |
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
[ | |
{ | |
"key": "group_56b8d319d3e60", | |
"title": "Condominium", | |
"fields": [ | |
{ | |
"key": "field_56b8d324b77e4", | |
"label": "T\u00edtulo Condominium", | |
"name": "titulo-condominium", | |
"type": "text", |
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
<?php if(have_rows('categoria_menu')) : while(have_rows('categoria_menu')) : the_row(); ?> | |
<div class="menu-item grid-8"> | |
<h2><?php the_sub_field('nome_categoria'); ?></h2> | |
<ul> | |
<?php if(have_rows('prato_menu')) : while(have_rows('prato_menu')) : the_row(); ?> | |
<li> | |
<span><sup>R$</sup><?php the_sub_field('preco_prato'); ?></span> | |
<div> | |
<h3><?php the_sub_field('nome_prato'); ?></h3> | |
<?php the_sub_field('descricao_prato'); ?> |
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
'use strict'; | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var cssnano = require('gulp-cssnano'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var uglify = require('gulp-uglify'); | |
gulp.task('sass', function(){ |
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
git init | |
echo Change me > change-me | |
echo Delete me > delete-me | |
git add change-me delete-me | |
git commit -m initial | |
echo OK >> change-me | |
rm delete-me | |
echo Add me > add-me |
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
var gulp = require('gulp'); | |
var postcss = require('gulp-postcss'); | |
var precss = require('precss'); | |
var cssnext = require('postcss-cssnext'); | |
var cssnano = require('cssnano'); | |
var uglify = require('gulp-uglify'); | |
var browserSync = require('browser-sync'); | |
var reload = browserSync.reload; | |
gulp.task('sync', function() { |
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
<header> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
Conteúdo | |
</div> | |
</div> | |
</div> | |
</header> |
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
<header> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<h1>OLICXOLSKSF</h1> | |
<nav> | |
<ul> | |
<li></li> | |
<li></li> | |
<li></li> |
OlderNewer