Guest User

Untitled

a guest
Dec 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Title</title>
  4. <style type="text/css">
  5. body {
  6. font-weight: 200;
  7. font-size: 14px;
  8. }
  9. .header {
  10. font-size: 20px;
  11. font-weight: 100;
  12. text-align: center;
  13. color: #007cae;
  14. }
  15. .title {
  16. font-size: 22px;
  17. font-weight: 100;
  18. /* text-align: right;*/
  19. padding: 10px 20px 0px 20px;
  20. }
  21. .title span {
  22. color: #007cae;
  23. }
  24. .details {
  25. padding: 10px 20px 0px 20px;
  26. text-align: left !important;
  27. /*margin-left: 40%;*/
  28. }
  29. .hrItem {
  30. border: none;
  31. height: 1px;
  32. /* Set the hr color */
  33. color: #333; /* old IE */
  34. background-color: #fff; /* Modern Browsers */
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class='wrapper'>
  40. <div class='header'>
  41. <p class='title'>Invoice #<hr class='hrItem' /> </p>
  42. </div>
  43. <div>
  44. <div class='details'>
  45. Bill to: <br/>
  46. Amount: <br/>
  47. Date:
  48. </div>
  49. </div>
  50. </body>
  51. </html>
Add Comment
Please, Sign In to add comment