Advertisement
Guest User

Untitled

a guest
May 30th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. </title>
  2. <style>
  3. @font-face {
  4. font-family: 'trench';
  5. src: url('fonts/trench100free.ttf');
  6. }
  7.  
  8. .content {
  9. width: 480px;
  10. overflow: hidden;
  11. }
  12.  
  13. .trench-bold {
  14. text-align: left;
  15. font-family: trench;
  16. font-size: 55px;
  17. font-weight: bold;
  18. color: white;
  19. }
  20.  
  21. .pull {
  22. margin-bottom: 2px;
  23. font-size: 150%;
  24. font-family: trench;
  25. font-weight: bold;
  26. -webkit-transition: .5s ease;
  27. transition: .5s ease;
  28. width: 180px;
  29. padding: 5px;
  30. color: black;
  31. background-color: white;
  32. text-align: right;
  33. }
  34.  
  35. .pull:hover{
  36. -webkit-transition: .5s ease;
  37. width: 80%;
  38. background-color: red;
  39. text-size: 175%;
  40. transition: .5s ease;
  41. }
  42.  
  43. body {
  44. margin: 0px;
  45. }
  46.  
  47. a {
  48. text-decoration: none;
  49. color: black;
  50. }
  51.  
  52. a:active {
  53. color: black;
  54. }
  55.  
  56. @media screen and (max-width: 400px) {
  57. .content {
  58. width: 100%;
  59. }
  60.  
  61. .pull {
  62. width: 50%;
  63. }
  64.  
  65. .pull:hover {
  66. width: 90%
  67. }
  68. }
  69. </style>
  70. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  71. </head>
  72. <body background="index_background.png">
  73. <div class="content" align="left">
  74. <section class="trench-bold">/The Goust Server</section>
  75. <br>
  76. <a href="downloads.html"><div class="pull">Downloads</div></a>
  77.  
  78. <a href="links.html"><div class="pull">Links</div></a>
  79.  
  80. <a href="links.html"><div class="pull">About</div></a>
  81. <br><br><br><br>
  82. <section class="trench-bold">/Pages</section>
  83. <br>
  84. <a href="samsworld.html"><div class="pull">Sam's World</div></a>
  85. </div>
  86. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement