Advertisement
aliyahscreation

Moonstone

Apr 9th, 2022
1,347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.76 KB | None | 0 0
  1. <style>
  2.  
  3.   .backgroundcardM {
  4.     width:90%;
  5.     margin:auto;
  6.     border:10px solid #F4FEFE;
  7.     background:#BBD2E1;
  8.     box-shadow:2px 2px 5px #000;
  9.   }
  10.  
  11.   .titlecardM {
  12.     margin:10px;
  13.     text-align:center;
  14.     font-size: 70px;
  15.     font-family: 'Butterfly Kids';
  16.     color: #F4FEFE;
  17.     text-shadow: 1px 1px 5px #000;
  18.   }
  19.  
  20.   .linepicM {
  21.     display:flex;
  22.     justify-content:space-between;
  23.     padding:10px;
  24.   }
  25.  
  26.   .piccardM {
  27.     width:150px;
  28.     height:150px;
  29.     border-radius:75px;
  30.     border:2px solid #F4FEFE;
  31.     margin:auto;
  32.     box-shadow:1px 1px 2px rgba(0,0,0,0.4);
  33.     text-align:center;
  34.   }
  35.  
  36.   .piccardM > p {
  37.     padding-top:25px;
  38.     font: 20px 'Sofia';
  39.       transition: all 0.5s ease-in-out;
  40.     -moz-transition: all 0.5s ease-in-out;
  41.     -webkit-transition: all 0.5s ease-in-out;
  42.     -ms-transition: all 0.5s ease-in-out;
  43.     -o-transition: all 0.5s ease-in-out;
  44.       opacity:0;
  45.     cursor:pointer;
  46.     color:#BBD2E1;
  47.   }
  48.  
  49.   .piccardM:hover > p {
  50.       opacity:1;
  51.       color: #F4FEFE;
  52.   }
  53.  
  54. </style>
  55.  
  56. <link href="https://fonts.googleapis.com/css2?family=Butterfly+Kids&family=Sofia&display=swap" rel="stylesheet">
  57.  
  58.  
  59. <div class="backgroundcardM">
  60.   <div class="titlecardM">An amazing Title</div>
  61.   <!--EACH LINE-->
  62.   <div class="linepicM">
  63.     <!--EACH PIC-->
  64.     <div class="piccardM" style="background:url(https://64.media.tumblr.com/153a97394dc88a5ff5c8e3d598d32414/tumblr_inline_pted0sSug21rjxgbh_400.gifv)center; background-size:cover;">
  65.       <p>An amazing Name</p>
  66.     </div>
  67.     <!--EACH PIC-->
  68.     <div class="piccardM" style="background:url(https://64.media.tumblr.com/99bb67e7e12c948b4a532083bb7dcd31/tumblr_inline_ptiezz5cJ71rjxgbh_400.gifv)center; background-size:cover;">
  69.       <p>An amazing Name</p>
  70.     </div>
  71.     <!--EACH PIC-->
  72.     <div class="piccardM" style="background:url(https://i.pinimg.com/originals/60/8d/76/608d7644747dde1739f5572898957d34.gif)center; background-size:cover;">
  73.       <p>An amazing Name</p>
  74.     </div>
  75.   </div>
  76.    <!--EACH LINE-->
  77.   <div class="linepicM">
  78.     <!--EACH PIC-->
  79.     <div class="piccardM" style="background:url(https://i.gifer.com/WHc2.gif)center; background-size:cover;">
  80.       <p>An amazing Name</p>
  81.     </div>
  82.     <!--EACH PIC-->
  83.     <div class="piccardM" style="background:url(https://i.pinimg.com/originals/02/6f/13/026f13b2858b8cb9e34df879a769b285.gif)center; background-size:cover;">
  84.       <p>An amazing Name</p>
  85.     </div>
  86.   </div>
  87. </div>
  88.  
  89.  
  90. <!-- CREDITS, DO NOT TOUCH-->
  91. <div style="margin:0 auto;text-align:center;"><a href="https://aliyahscreations.tumblr.com/" style="font-size:10px;letter-spacing:2px;color:#222;text-decoration:none; font-family:century gothic,helvetica,arial,sans-serif;font-size:12px;line-height:1.3;">© Code by Aliyah</a></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement