Advertisement
csfeijo

contato.css

Aug 10th, 2021
1,393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. /* definicoes de css da pagina de contato.html */
  2. /* configurem o mapa para ter 410 x 300px no CSS */
  3. /* adicionem uma borda arredonda no mapa - 10px */
  4. iframe {
  5.   width: 410px;
  6.   height: 300px;
  7.   border-radius: 10px;
  8. }
  9.  
  10. /* ja adicionem os campos de formulario no html */
  11. /* e jรก comecem a formatar os campos conforme o figma no css */
  12. input,
  13. textarea,
  14. button {
  15.   border: 1px solid white;
  16.   border-radius: 10px;
  17.   width: 578px;
  18.   padding: 10px;
  19.   margin-bottom: 20px;
  20.   background: transparent;
  21.   font-family: Poppins;
  22.   color:white;
  23.   outline: none;
  24. }
  25.  
  26. textarea {
  27.   height: 80px;
  28.   resize: none;  
  29. }
  30.  
  31. button {
  32.   width: auto;
  33.   float: right;
  34. }
  35.  
  36. /* para ter uma forma de customizar um atributo do HTML via CSS */
  37. /* criou-se um acesso parecido com os pseudo-seletores, porem usando 2x os : */
  38. ::placeholder {
  39.   color: #CCCCCC;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement