Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head><meta content="text/html; charset=UTF-8" http-equiv="content-type"><title>Dalekovod politika pristupa</title>
  4.  
  5.  
  6. <style>
  7. html {
  8. background-color: #c3ced4;
  9. font-family: Arial, Tahoma,Verdana;
  10. font-size:16px;
  11. }
  12.  
  13. .mainTable{
  14. width: 650px;
  15. height: auto;
  16. margin: 0 auto;
  17. position: relative;
  18. margin-top: 50px;
  19. border-radius: 10px;
  20. display: table;
  21. box-shadow: 0px 0px 24px rgba(0,0,0,0.7);
  22. }
  23.  
  24. .mainTable td {
  25. padding:20px;
  26. }
  27.  
  28. .tdHead {
  29. background: #f4f4f4;
  30. background: -moz-linear-gradient(top, #f4f4f4 0%, #cecece 100%);
  31. background: -webkit-linear-gradient(top, #f4f4f4 0%,#cecece 100%);
  32. background: linear-gradient(to bottom, #f4f4f4 0%,#cecece 100%);
  33. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#cecece',GradientType=0 );
  34. border-top-left-radius: 10px;
  35. border-top-right-radius: 10px;
  36. }
  37.  
  38. .tdMiddle {
  39. background-color: #fbfbfb;
  40. border-top: 1px solid #afafaf;
  41. }
  42.  
  43. .tdMiddle p{
  44. margin-left:10px;
  45. }
  46.  
  47. .tdMiddle p span.l{
  48. font-weight:600;
  49. margin-left:20px
  50. }
  51. .tdMiddle p span.d{
  52. font-weight:300;
  53. padding-left:10px;
  54. }
  55. td.tdBottom {
  56. background-color:white;
  57. border-bottom-left-radius:10px;
  58. border-bottom-right-radius:10px;
  59. padding:5px 15px;
  60. border-top: 1px solid #cacaca;
  61. }
  62. .tdBottom img {
  63. display:block;
  64. height:70px;
  65. }
  66. .stopSign {
  67. width:64px;
  68. height:64px;
  69. display:block;
  70. float:left;
  71. margin-right:20px;
  72. }
  73. h1 {
  74. display: block;
  75. float: left;
  76. font-size: 26px;
  77. color: #000;
  78. text-shadow: 1px 1px 1px #fff;
  79. }
  80. .goBack {
  81. margin-left:20px;
  82. background-color: #4CAF50;
  83. border: none;
  84. color: white;
  85. padding: 10px 16px;
  86. text-align: center;
  87. text-decoration: none;
  88. display: inline-block;
  89. font-size: 14px;
  90. border-radius:8px;
  91. cursor:pointer;
  92. margin:10px 0 0 20px;
  93. }
  94. .goBack:hover {
  95. background-color: #368a3a;
  96. }
  97.  
  98. </style>
  99. </head><body>
  100.  
  101. <table class="mainTable" border="0" cellpadding="0" cellspacing="0">
  102. <tr>
  103. <td class="tdHead">
  104. <img src="https://s17.postimg.org/em548jc9n/stop.png" class="stopSign">
  105. <h1>Pristupate blokiranom internet sadržaju</h1>
  106. </td>
  107. </tr>
  108. <tr>
  109. <td class="tdMiddle">
  110. <p>Pristupate internet sadržaju iz Dalekovod mreže koji se nadzire</p>
  111. <p><span class="l">Vaše korisničko ime:</span><span class="d">$(user.name)</span></p>
  112. <p><span class="l">Blokirani URL:</span><span class="d">$(url.host)</span></p>
  113. <p><span class="l">Kategorija URLa:</span><span class="d">$(cs-categories)</span></p>
  114. <p><span class="l">Kategorija blokiranja:</span><span class="d">$(exception.category)</span></p>
  115. <p><button class="goBack" onclick="goBack()">Povratak na prethodnu stranicu</button></p>
  116. </td>
  117. </tr>
  118. <tr>
  119. <td class="tdBottom">
  120. <img alt="Dalekovod" src="https://s17.postimg.org/nsnevthi3/DISK_HNZ.jpg">
  121. </td>
  122. </tr>
  123. </table>
  124. <script>
  125. function goBack() {
  126. window.history.back();
  127. }
  128. </script>
  129. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement