Advertisement
Guest User

CSS

a guest
Aug 21st, 2022
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1. *  {
  2.   padding: 0px;
  3.   margin: 0px;
  4.   font-family: 'Arial';
  5.   color: #dce6df;
  6.   user-select: none;
  7.   text-decoration: none;
  8. }
  9.  
  10. body  {
  11.   background: #0f1214;
  12. }
  13.  
  14.  
  15.  
  16. .wrapper  {
  17.   display: inline-flex;
  18.   justify-content: center;
  19.   align-items: center;
  20.   margin: 70px 20px 0px 20px;
  21. }
  22.  
  23. .card-container  {
  24.   width: 300px;
  25.   height: 500px;
  26.  
  27.   background: #0e3466;
  28.   border-radius: 10px;
  29.  
  30.   transition: 1s;
  31. }
  32.  
  33. .title  {
  34.   font-size: 250%;
  35.  
  36.   margin: 20px 0px 0px 0px;
  37. }
  38.  
  39. .desc  {
  40.   color: #bbc7c2;
  41.  
  42.   text-align: center;
  43.   margin: 70px 0px 0px 0px;
  44. }
  45.  
  46. .info  {
  47.   text-align: center;
  48.   margin: 100px auto 0px auto;
  49.   width: 170px;
  50.   height: 30px;
  51.   line-height: 30px;
  52.   display: block;
  53.   border: 4px #bbc7c2 solid;
  54.   font-weight: 600;
  55.   border-radius: 10px;
  56.   transition: 0.5s;
  57. }
  58.  
  59. .info:hover  {
  60.   border-radius: 20px;
  61.   font-size: 120%;
  62.   width: 190px;
  63.   height: 40px;
  64.   line-height: 40px;
  65.   box-shadow: 0px 0px 20px #ffffff;
  66.   transition: 0.5s;
  67. }
  68.  
  69. .card-container:hover  {
  70.   box-shadow: 0px 0px 50px #093d82;
  71.   transition: 1s;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement