Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Title</title>
  6.     <style>
  7.         @font-face {
  8.             font-family: DroidSans;
  9.             src: url('//dev-dev-pcre-js-gen.cs59.force.com/resource/DroidSans');
  10.         }
  11.  
  12.         @font-face {
  13.             font-family: DroidSansForIe;
  14.             src: url('//dev-dev-pcre-js-gen.cs59.force.com/resource/DroidSansForIe');
  15.         }
  16.  
  17.         .prechat .phone {
  18.             height: 20px;
  19.             margin-right: 20px;
  20.             margin-top: 6px;
  21.             position: relative;
  22.             float: left;
  23.             font-size: 14px;
  24.             text-align: left;
  25.         }
  26.  
  27.         .prechat {
  28.             border: 0;
  29.             position: absolute;
  30.             text-align: center;
  31.             width: 365px;
  32.             left: 0;
  33.             top: 0;
  34.             display: block;
  35.             font-family: DroidSans, DroidSansForIe;
  36.             font-size: 16px;
  37.             background-color: #FFFFFF;
  38.         }
  39.  
  40.  
  41.  
  42.         .prechat .header {
  43.             height: 90px;
  44.             background:  url('//dev-dev-pcre-js-gen.cs59.force.com/resource/Symantec_prechatHeader');
  45.             font-size: 24px;
  46.             padding-left: 90px;
  47.             line-height: 90px;
  48.         }
  49.  
  50.         .prechat .title {
  51.             font-size: 21px;
  52.             margin-top: 10px;
  53.             height: 22px;
  54.         }
  55.  
  56.  
  57.         .prechat .element {
  58.             height: 48px;
  59.             padding-top: 14px;
  60.             padding-left: 20px;
  61.             padding-right: 20px;
  62.         }
  63.  
  64.         .prechat .button_standard {
  65.             width: 100%;
  66.             background-color: #E7E7E7;
  67.             cursor: pointer;
  68.             height: 48px;
  69.             -moz-border-radius: 5px;
  70.             -webkit-border-radius: 5px;
  71.             border-radius: 5px;
  72.             border: 0;
  73.             box-shadow: none;
  74.             outline: none;
  75.             font-family: DroidSans, DroidSansForIe;
  76.             color: black;
  77.             font-size: 15px;
  78.         }
  79.  
  80.         .prechat .button_phone {
  81.             width: 182px;
  82.             margin-right: 10px;
  83.             position: relative;
  84.             float: left;
  85.             background-color: #E7E7E7;
  86.             cursor: pointer;
  87.             height: 48px;
  88.             -moz-border-radius: 5px;
  89.             -webkit-border-radius: 5px;
  90.             border-radius: 5px;
  91.             border: 0;
  92.             box-shadow: none;
  93.             outline: none;
  94.             font-family: DroidSans, DroidSansForIe;
  95.             color: black;
  96.             font-size: 15px;
  97.         }
  98.  
  99.         .prechat .button:hover {
  100.             background-color: #FFBC0F;
  101.         }
  102.  
  103.         .prechat .footer {
  104.             background: url('//dev-dev-pcre-js-gen.cs59.force.com/resource/Symantec_prechatLogo');
  105.             background-repeat: no-repeat;
  106.             background-position: right;
  107.             margin-right: 15px;
  108.             height: 43px;
  109.             margin-top: 10px;
  110.             margin-bottom: 14px;
  111.         }
  112.  
  113.         .prechat .close {
  114.             background: url('//dev-dev-pcre-js-gen.cs59.force.com/resource/prechat_decline');
  115.             background-repeat: no-repeat;
  116.             position: absolute;
  117.             top: 3px;
  118.             right: 3px;
  119.             width: 14px;
  120.             cursor: pointer;
  121.         }
  122.     </style>
  123. </head>
  124. <body>
  125.  
  126. <div class="prechat">
  127.  
  128.     <div class="header">
  129.         How can we help you?
  130.         <div class="close">&nbsp;</div>
  131.     </div>
  132.  
  133.     <div class="title">Choose the topic:</div>
  134.  
  135.     <div class="element">
  136.         <button class="button button_phone">Renewal and <br/> Product Purchase</button> <div class="phone">or call<br>(8 000) 000 00</div>
  137.     </div>
  138.  
  139.     <div class="element">
  140.         <button class="button button_standard">Download and Installation of my Product</button>
  141.     </div>
  142.  
  143.     <div class="element">
  144.         <button class="button button_standard">Automatic Renewal Bank Charge Issues</button>
  145.     </div>
  146.  
  147.     <div class="element">
  148.         <button class="button button_standard">Technical and Threat Related Issues</button>
  149.     </div>
  150.  
  151.  
  152.     <div class="footer">&nbsp;</div>
  153.  
  154. </div>
  155.  
  156.  
  157. </body>
  158. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement