Created
October 7, 2013 00:37
-
-
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
This file contains hidden or 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
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