Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.77 KB | None | 0 0
  1. @media (min-width: 1px) {
  2.   .bodyhome{ /*get full screen minus footer*/
  3.     height: 90%;
  4. }
  5. .background{
  6.    background-image: url(../../../../../backend/resources/backgroundimg.jpg);
  7.    height: 100%; /*full height of bodyclass*/
  8.  
  9.    background-position: center;
  10.    background-repeat: no-repeat;
  11.    background-size: cover;
  12. }
  13.  
  14. .background > h3 {
  15.    position: absolute;
  16.    margin-left: 2%;
  17.    color: whitesmoke;
  18. }
  19. .background > ul {
  20.    position: absolute;
  21.    margin-top: 80px;
  22.    margin-left: 1%;
  23.    color: whitesmoke;
  24. }
  25. .bottom{
  26.    margin-top: 100%;
  27. }
  28.  
  29.  
  30. }
  31. @media (min-width: 500px) {
  32.   .bodyhome{ /*get full screen minus footer*/
  33.     height: 90%;
  34. }
  35. .background{
  36.    background-image: url(../../../../../backend/resources/backgroundimg.jpg);
  37.    height: 100%; /*full height of bodyclass*/
  38.  
  39.    background-position: center;
  40.    background-repeat: no-repeat;
  41.    background-size: cover;
  42. }
  43.  
  44. .background > h3 {
  45.    position: absolute;
  46.    margin-left: 2%;
  47.    color: whitesmoke;
  48. }
  49. .background > ul {
  50.    position: absolute;
  51.    margin-top: 8%;
  52.    margin-left: 2%;
  53.    color: whitesmoke;
  54. }
  55. .bottom{
  56.    margin-top: 43%;
  57. }
  58. }
  59.  
  60.  
  61.  
  62.  
  63.   @media (min-width: 1000px) {
  64.     .bodyhome{ /*get full screen minus footer*/
  65.       height: 90%;
  66.   }
  67.   .background{
  68.      background-image: url(../../../../../backend/resources/backgroundimg.jpg);
  69.      height: 100%; /*full height of bodyclass*/
  70.  
  71.      background-position: center;
  72.      background-repeat: no-repeat;
  73.      background-size: cover;
  74.   }
  75.  
  76.   .background > h3 {
  77.      position: absolute;
  78.      margin-left: 2%;
  79.      color: whitesmoke;
  80.   }
  81.   .background > ul {
  82.      position: absolute;
  83.      margin-top: 4%;
  84.      margin-left: 2%;
  85.      color: whitesmoke;
  86.   }
  87.   .bottom{
  88.      margin-top: 43%;
  89.   }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement