Advertisement
chrisCNG

PixelArtStyle

Oct 20th, 2020 (edited)
1,969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.34 KB | None | 0 0
  1. #art {
  2.   display: table;
  3.   border-spacing: 1px;
  4.   background-color: black;
  5.   border: 5px solid black;
  6. }  
  7.  
  8. .row {
  9.   display: table-row;
  10. }
  11.  
  12. .pixel {
  13.   display: table-cell;
  14.   background-color: lemonchiffon;
  15.   width: 40px;
  16.   height: 40px;
  17. }
  18.  
  19. .pen {
  20.   display: inline-block;
  21.   width: 40px;
  22.   height: 40px;
  23.   border: 2px solid black;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement