Skip to content

Commit

Permalink
Primeiros códigos do Gerenciador de Tarefas
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlon Lenck Pacheco committed Jan 16, 2013
0 parents commit c635b1d
Show file tree
Hide file tree
Showing 11 changed files with 550 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
163 changes: 163 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.vspscc
.builds
*.dotCover

## TODO: If you have NuGet Package Restore enabled, uncomment this
#packages/

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp

# ReSharper is a .NET coding add-in
_ReSharper*

# Installshield output folder
[Ee]xpress

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish

# Others
[Bb]in
[Oo]bj
sql
TestResults
*.Cache
ClientBin
stylecop.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML



############
## Windows
############

# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

# Mac crap
.DS_Store
121 changes: 121 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
@charset "UTF-8";

* {margin: 0; padding: 0;}
a {text-decoration : none;}


/*
Estilo geral
*/
body {
background: #fff url('../img/wood.jpg') no-repeat top center;
color : #000;
font-family : Helvetica,sans-serif;
font-size : 10pt;
overflow: hidden;
text-align : left;
}

html, body {
height: 100%;
}

#geral {
color : #000;
min-height : 100%;
margin : auto;
position : relative;
}

#topo {
background: #555;
box-shadow: 0px 0px 5px 1px rgba(0,0,0,.5);
height : 40px;
padding : 0 0 0 0;
text-align: center;
z-index: 999;
}

#titulo {
color : #eaeaea;
font-size: 15pt;
font-weight : bolder;
padding : 3px;
line-height: 40px;
text-shadow: 0px 0px 6px rgba(255,255,255,.7);
top : 5px;
}

#barra_menus {
background: #eaeaea;
box-shadow: 5px 0px 5px rgba(0,0,0,.5);
height: 100%;
width:270px;
position: fixed;
}

nav li {
border-bottom: 1px dotted #ccc;
color: #555;
cursor: pointer;
display: block;
font-weight: bold;
padding: 10px;
}

nav li.ativo {
background: #4876FF;
border: 1px inset;
color: #fff;
}

nav li a {
color: #555;
float: right;
}

#conteudo {
color : #000;
padding : 20px 0px 0px 270px;
}

/*
Formulário de tarefa;
*/
.formulario {
padding: 20px;
}
#tarefa {
background: rgba(0,0,0,.3);
border: 1px inset #ccc;
border-radius: 5px;
box-shadow: 2px 2px 5px rgba(0,0,0,.5) inset;
color: #fff;
margin:3px;
padding: 10px 20px;
text-shadow: 2px 2px 2px rgb(0,0,0);
width: 90%;
}

/*
Listagem de tarefas;
*/
.listaTarefas {
list-style: none;
overflow: auto;
max-height: 500px;
padding: 20px;
}

.listaTarefas li {
background: #eaeaea;
border: 1px outset rgba(255,255,255,.9);
border-radius: 5px;
color: #555;
margin: 2px;
padding: 10px;
}

.listaTarefas li a {
float: right;
}
Binary file added img/wood.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Gerenciando Tarefas - HTML5 - IndexedDB</title>
<link rel='stylesheet' href='css/style.css' />
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/scripts.js"></script>
</head>
<body>
<section id="geral">
<aside id='barra_menus'>
<header id="topo">
<h1 id="titulo">Tarefas</h1>
</header>
<nav>
<ul class="listaCategorias">

</ul>
</nav>
</aside>
<article id="conteudo">
<span class="formulario">
<input type="hidden" name="categoria" id="categoria" value="">
<input type="text" name="tarefa" id="tarefa" placeholder="Adicionar nova tarefa">
</span>
<br/>
<ul class="listaTarefas">

</ul>
</article>
</section>
</body>
</html>
2 changes: 2 additions & 0 deletions js/jquery-1.8.3.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit c635b1d

Please sign in to comment.