Advertisement
Javi

index.html with pikachu

Oct 13th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <style>
  2. body {
  3. overflow: hidden;
  4. }
  5. #capsidelogo {
  6. position: absolute;
  7. right : 1em;
  8. bottom: 1em;
  9. width: 300px;
  10. padding: 0;
  11. }
  12. #version {
  13. position: absolute;
  14. left : 1em;
  15. bottom: 1em;
  16. width: 300px;
  17. padding: 0;
  18. font-size: 4em;
  19. font-weight: bold;
  20. color: silver;
  21. }
  22.  
  23. #pokemonlogo {
  24. position : absolute;
  25. width : 98%;
  26. margin : 0 auto;
  27. z-index : -10;
  28. opacity: 0.4;
  29. }
  30.  
  31. .card {
  32. display : block;
  33. min-width: 420px;
  34. width : 40%;
  35. background-color : white;
  36. border : 1px solid silver;
  37. padding: 10px;
  38. margin : 0 auto;
  39. text-align : center;
  40. }
  41.  
  42. .card > img {
  43. min-width : 400px;
  44. }
  45.  
  46. .card h2 {
  47. margin : 8px;
  48. font-family : sans-serif;
  49. font-size : 4em;
  50. color : tomato;
  51. }
  52.  
  53. .dangerousbutton {
  54. position : absolute;
  55. right: 1em;
  56. top : 0;
  57. margin-top: 2em;
  58. -moz-box-shadow: 0px 0px 2px 0px #c21b1b;
  59. -webkit-box-shadow: 0px 0px 2px 0px #c21b1b;
  60. box-shadow: 0px 0px 2px 0px #c21b1b;
  61. background-color:#cf293a;
  62. -moz-border-radius:12px;
  63. -webkit-border-radius:12px;
  64. border-radius:12px;
  65. border:1px solid #ab1919;
  66. display:inline-block;
  67. cursor:pointer;
  68. color:#ffffff;
  69. font-family:Arial;
  70. font-size:12px;
  71. padding:8px 16px;
  72. text-decoration:none;
  73. }
  74. .dangerousbutton:hover {
  75. background-color:#bd2a42;
  76. }
  77. .dangerousbutton:active {
  78. top:1px;
  79. }
  80.  
  81. </style>
  82. <img id="pokemonlogo" src="https://i.redd.it/xn4we2ozfpv01.png" alt="pokemon logo"/>
  83. <div class="card">
  84. <img src="https://pokemonletsgo.pokemon.com/assets/img/common/char-pikachu.png" alt="Pikachu" height="500"/>
  85. <h2>pikachu</h2>
  86. </div>
  87.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement