Advertisement
Guest User

Untitled

a guest
Jan 11th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Site-Market</title>
  6. <style type="text/css">
  7. html, body
  8. {
  9. margin:0px;
  10. padding:0px;
  11. }
  12.  
  13. .uppage {
  14. position: relative;
  15. background-image: url(images/main_05.png);
  16. width: 1140px;
  17. height: 50px;
  18. margin: 0 auto;
  19. border-radius: 1px 1px 6px 6px;
  20. }
  21. .logo {
  22. position: relative;
  23. background-image: url(images/main_09.png);
  24. width: 150px;
  25. height: 96px;
  26. margin: 2% auto;
  27. right: 494px;
  28. }
  29. .ls {
  30. position: relative;
  31. width: 84%;
  32. margin: 0 auto;
  33. text-align: center;
  34. font-family: Tahoma;
  35. font-size: 24px;
  36. margin-top: -170px;
  37. left: -35%;
  38. }
  39. .ok {
  40. position: absolute;
  41. width: 84%;
  42. margin: 0 auto;
  43. margin-top: 50px;
  44. font-family: Times New Roman;
  45. font-size: 24px;
  46. }
  47. .container {
  48. width: 1140px;
  49. margin: 0 auto;
  50. max-width: 1140px;
  51. }
  52. header {
  53. position:relative;
  54. }
  55. header #fittext1 {
  56. top:0px;
  57. z-index:1;
  58. padding-right: 220px;
  59.  
  60.  
  61. }
  62. b {
  63. text-align: center;
  64. color: black;
  65. display: block;
  66. text-shadow: #000000 , -2px 2px 0, -3px 3px 0, -4px 4px 0;
  67. margin: 5% auto 5%;
  68. }
  69.  
  70. #header_menu_row
  71. {
  72. color:white;
  73. margin-top:-40px;
  74. margin-left:30px;
  75. font-family: Tahoma;
  76. font-size: 24px;
  77. }
  78.  
  79. </style>
  80. </head>
  81. <body>
  82. <div class="container">
  83.  
  84. <div class="uppage"></div>
  85.  
  86. <header>
  87. <div id="header_menu_row">
  88. <span id="fittext1">Личный кабинет</span>
  89. </div>
  90. </header>
  91. <div class="logo"></div>
  92.  
  93. </div>
  94. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
  95. <script src="jquery.fittext.js"></script>
  96. <script type="text/javascript">
  97. $("#fittext1").fitText();
  98. $("#fittext2").fitText(1.2);
  99. $("#fittext3").fitText(1.1, { minFontSize: 50, maxFontSize: '75px' });
  100. </script>
  101. </body>
  102. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement