Advertisement
csfeijo

galeria.css

Aug 11th, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.41 KB | None | 0 0
  1. section {
  2.   text-align: center;
  3. }
  4.  
  5. section img {
  6.   width: 250px;
  7. }
  8.  
  9. .miniaturas img {
  10.   width: 80px;
  11.   border: 2px solid #BCB78F;
  12.   border-radius: 6px;
  13.   padding: 4px;
  14.   /* topo , direita, embaixo, esquerda */
  15.   margin: 0 20px;
  16. }
  17.  
  18. .miniaturas img:hover {
  19.   border: 2px solid #EDE1B7;
  20.   /* itens clicaveis idealmente possuem este cursor : boa pratica de UX (User Experience) */
  21.   cursor: pointer;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement