Advertisement
Guest User

Untitled

a guest
May 26th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. .flex-container {
  2. display:inline-flex;
  3. flex-wrap:wrap;
  4. min-height:700px;
  5. color:#00000f;
  6. justify-content:center
  7. }
  8.  
  9. .flex-container2 {
  10. display:inline-flex;
  11. flex-direction:column;
  12. flex-wrap:wrap;
  13. color:#00000f
  14. }
  15.  
  16. .flex-container>div {
  17. border:double #d7bb93 5px;
  18. border-radius:2px;
  19. box-shadow:10px 2px 40px #3a352b;
  20. background-image:url(../../images/background.jpg);
  21. background-position:fixed;
  22. background-size:cover;
  23. width:600px;
  24. margin:20px;
  25. text-align:center;
  26. line-height:50px;
  27. font-size:24px;
  28. font-weight: 400;
  29. }
  30.  
  31. .flex-container2>div {
  32. border:double #d7bb93 5px;
  33. justify-content:right;
  34. border-radius:2px;
  35. box-shadow:10px 2px 40px #3a352b;
  36. background-image:url(../../images/background.jpg);
  37. background-position:fixed;
  38. background-size:cover;
  39. min-height:250px;
  40. height: 350px;
  41. width:480px;
  42. max-width:480px;
  43. margin:20px;
  44. text-align:center;
  45. line-height:50px;
  46. font-size:22px
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement