Advertisement
Guest User

popup

a guest
Jan 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.91 KB | None | 0 0
  1. <!doctype html>
  2.  <html>
  3.   <head>
  4.     <meta charset="UTF-8">
  5.     <style>
  6.       div {
  7.         padding-top: 5px;
  8.         padding-right: 1px;
  9.         padding-bottom: 5px;
  10.         padding-left: 1px;
  11.         margin-top:2px;
  12.         margin-bottom:2px;
  13.       }
  14.       select{
  15.         padding-top: 2px;
  16.         padding-right: 2px;
  17.         padding-bottom: 2px;
  18.         padding-left: 2px;
  19.         margin-top:3px;
  20.         margin-bottom:2px;
  21.       }
  22.       button{
  23.         margin-top:2px;
  24.         margin-bottom:2px;
  25.         align-content: center;
  26.       }
  27.       h2{
  28.         text-align: center;
  29.         align-items: stretch;
  30.         background: linear-gradient(to right, rgba(0,139,139, 0.77), rgba(32,178,170,0.8));
  31.         width: 250px;
  32.         margin: 0;
  33.         font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  34.         color: white;
  35.       }
  36.       p{
  37.         border-radius: 15px 50px;
  38.         background: white;
  39.         padding: 20px;
  40.         width: 200px;
  41.         border: 2px solid teal;
  42.         font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  43.         font-size: 16px;
  44.         align-content: center;
  45.         display: none;
  46.       }
  47.     </style>
  48.     <title>Extension Pop-Up</title>
  49.     <h2>Sequoia</h2>
  50.   </head>
  51.   <body>
  52.     <div>Destination language:
  53.       <select id="lang">
  54.         <option value="en">English</option>
  55.         <option value="it">Italiano</option>
  56.         <option value="de">Deutsch</option>
  57.         <option value="es">Español</option>
  58.         <option value="fr">Français</option>
  59.         <option value="hr">Hrvatski</option>
  60.       </select>
  61.       <button id="submitTranslation">Translate!</button>
  62.     </div>
  63.     <p id="p1"></p>
  64.     <p id="p2"></p>
  65.     <script src="popup.js" type="text/javascript"></script>
  66.     <script src="background.js" type="text/javascript"></script>
  67.   </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement