Advertisement
MattDovi

CSS

Apr 24th, 2021
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. * {
  2.     font-family: 'Raleway', sans-serif;
  3. }
  4.  
  5. .background{
  6.     background-color: #f7f7f7;
  7. }
  8.  
  9. .title{
  10.     color: #393e46;
  11.     margin-left:20px;
  12.     margin-top: 15px;
  13. }
  14.  
  15. .box-container{
  16.     width: calc(100% - 20px);
  17.     height: 100%;
  18.     margin: 10px;
  19.  
  20.     display: flex;
  21.     flex-flow: row wrap;
  22.     justify-content: space-between;
  23.     padding: 0;
  24. }
  25.  
  26.  
  27. .box{
  28.     background-color: #929aab;
  29.     border-radius: 10px;
  30.  
  31.     width: 100%; height: 30%;
  32.     margin: 10px;
  33.     margin-bottom: 10%;
  34. }
  35.  
  36. .text{
  37.     color: #f7f7f7;
  38.     margin: 10px;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement