Skip to content

Instantly share code, notes, and snippets.

@InFog
Created October 7, 2013 00:37
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save InFog/6860949 to your computer and use it in GitHub Desktop.
Save InFog/6860949 to your computer and use it in GitHub Desktop.
CSS usado nos exemplos do sistema de tarefas do livro PHP e MySQL da Casa do Código http://www.casadocodigo.com.br/products/livro-php-mysql
body {
font-family: Sans-serif;
color: #333;
}
h1 {
text-align: center;
}
.erro {
color: #F44;
}
fieldset {
border: 3px double #333;
color: #000;
margin: 10px 0 0 0;
}
label {
display: block;
margin: 10px 0 0 0;
}
input[type=text],
textarea {
width: 100%;
border: 1px solid #333;
padding: 3px;
border-radius: 5px;
}
input[type=submit] {
float: right;
clear: both;
}
table {
width: 100%;
}
table th {
background-color: #EEE;
font-size: 18px;
}
table td {
border-bottom: 1px solid #333;
color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment