n128

404 CSS

May 12th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.10 KB | None | 0 0
  1. * {
  2.     padding: 0;
  3.     margin: 0;
  4.     font-size: 10pt;
  5.     font-family: Verdana,Helvetica,Arial,sans-serif;
  6.     color: #24292e;
  7.     word-wrap: break-word;
  8.     box-sizing: border-box;
  9. }
  10.  
  11. html,body {
  12.     background-image: url("https://play.pokemonshowdown.com/fx/client-bg-charizards.jpg");
  13.     background-color: #344b6c;
  14.     position: relative;
  15.     min-width: 100%;
  16.     min-height: 100%;
  17. }
  18.  
  19. header {
  20.     min-width: 100vw;
  21.     min-height: 50px;
  22.     position: relative;
  23.     background: url("https://play.pokemonshowdown.com/fx/client-topbar-bg.png") repeat-x left top scroll;
  24. }
  25.  
  26. .maintabbarbottom {
  27.     height: 6px;
  28.     min-width: 100vw;
  29.     background: #f8f8f8;
  30.     border: none;
  31.     border-top: 1px solid #aaa;
  32.     border-bottom: 1px solid #aaa;
  33.     box-shadow: 0 1px 2px rgba(0,0,0,.2);
  34.     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  35.     -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  36. }
  37.  
  38. .button {
  39.     outline: none;
  40.     cursor: pointer;
  41.     text-align: center;
  42.     text-decoration: none;
  43.     border-radius: 5px;
  44.     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2), inset 0 -1px 2px #fff;
  45.     -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2),inset 0 -1px 2px #fff;
  46.     box-shadow: 0 1px 2px rgba(0,0,0,.2), inset 0 -1px 2px #fff;
  47.     border-radius: 5px;
  48.     font-family: Verdana,Helvetica,Arial,sans-serif;
  49.     display: inline-block;
  50.     color: #222;
  51.     text-shadow: 0 1px 0 #fff;
  52.     border: 1px solid #aaa;
  53.     background: #e3e3e3;
  54.     background: linear-gradient(to bottom,#f6f6f6,#e3e3e3);
  55.     font-size: 9pt;
  56.     padding: 3px 8px;
  57. }
  58.  
  59. .button:active {
  60.     border: 2px solid #aaa;
  61. }
  62.  
  63. .container-button {
  64.     position: absolute;
  65.     top: 25%;
  66.     left: 10px;
  67.     right: 0;
  68.     bottom: 0;
  69. }
  70.  
  71. .main {
  72.     background: rgba(242,247,250,.5);
  73.     border-radius: 2.5px;
  74.     padding: 18px;
  75.     margin: auto;
  76.     text-align: center;
  77.     position: relative;
  78.     max-width: 50%;
  79.     margin-top: 25vh;
  80. }
  81.  
  82. .imager-top-left {
  83.     position: absolute;
  84.     top: 2%;
  85.     left: 0;
  86.     right: 90%;
  87.     bottom: 0;
  88. }
  89.  
  90. .imager-top-right {
  91.     position: absolute;
  92.     top: 2%;
  93.     left: 90%;
  94.     right: 0;
  95.     bottom: 0;
  96. }
  97.  
  98. .imager-bottom-left {
  99.     position: absolute;
  100.     top: 85%;
  101.     left: 0;
  102.     right: 90%;
  103.     bottom: 2%;
  104. }
  105.  
  106. .imager-bottom-right {
  107.     position: absolute;
  108.     top: 85%;
  109.     left: 90%;
  110.     right: 0;
  111.     bottom: 2%;
  112. }
  113.  
  114. .letter {
  115.     font-size: 13rem;
  116.     font-weight: bold;
  117. }
  118.  
  119. .container-ups {
  120.     font-weight: 600;
  121.     color: #4f565e;
  122.     padding-bottom: 10px;
  123. }
  124.  
  125. @media (max-width: 1100px) {
  126.     .main {
  127.         max-width: 70%;
  128.     }
  129. }
  130.  
  131. @media (max-width: 900px) {
  132.     .button {
  133.         padding: 5px 10px;
  134.         font-size: 10pt;
  135.     }
  136.    
  137.     .main {
  138.         margin-top: 10vh;
  139.         max-width: 50%;
  140.     }
  141.  
  142.     .imager-top-left {
  143.         position: absolute;
  144.         right: 70%;
  145.     }
  146.  
  147.     .imager-top-right {
  148.         position: absolute;
  149.         left: 70%;
  150.     }
  151.  
  152.     .imager-bottom-left {display: none}
  153.     .imager-bottom-right {display: none}
  154.  
  155.     .letter {
  156.         font-size: 8rem;
  157.         display: block;
  158.     }
  159. }
Add Comment
Please, Sign In to add comment