Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. <body>
  2. <div id="message">
  3. <div class="wrap">
  4. <a href="...">Link 1</a>
  5. <a href="...">Link 2</a>
  6. <div class="website">
  7. <div class="website-button">
  8. <a href="...">Link 3</a>
  9. <a href="...">Link 4</a>
  10. </div>
  11. </div>
  12. </div>
  13. </div>
  14. </body>
  15.  
  16. #message a:link { color: rgba(85, 165, 255, 1.0); }
  17. #message a:visited { color: rgba(85, 165, 255, 1.0); }
  18. #message a:hover { color: rgba(95, 185, 255, 1.0); }
  19. #message a:active { color: rgba(95, 185, 255, 1.0); }
  20.  
  21. .website-button a:link,
  22. .website-button a:visited,
  23. .website-button a:hover,
  24. .website-button a:active {
  25. color: #ffffff;
  26. }
  27.  
  28. <html>
  29. <head>
  30. <style>
  31. a { text-decoration: none; }
  32. a:hover { text-decoration: underline; }
  33. .wrap {
  34. max-width: 800px;
  35. margin: 32px auto;
  36. padding: 0 24px;
  37. }
  38. #message {
  39. overflow: hidden;
  40. background: rgba(62, 72, 119, 1.0);
  41. color: rgba(255, 255, 255, 1.0);
  42. }
  43. #message a:link { color: rgba(85, 165, 255, 1.0); }
  44. #message a:visited { color: rgba(85, 165, 255, 1.0); }
  45. #message a:hover { color: rgba(95, 185, 255, 1.0); }
  46. #message a:active { color: rgba(95, 185, 255, 1.0); }
  47. .website {
  48. width: 100%; height: auto;
  49. margin: 0.6rem 0 1.6rem 0;
  50. }
  51. .website-button {
  52. width: 50%;
  53. height: auto;
  54. margin: 0 auto;
  55. padding: 12px 18px;
  56. background: #f50;
  57. font-size: 1.8rem;
  58. line-height: 2.0rem;
  59. text-transform: none;
  60. text-align: center;
  61. font-weight: 700;
  62. }
  63. .website-button a:link,
  64. .website-button a:visited,
  65. .website-button a:hover,
  66. .website-button a:active {
  67. color: #ffffff;
  68. }
  69. </style>
  70. </head>
  71. <body>
  72. <div id="message">
  73. <div class="wrap">
  74. <h3>Hello!</h3>
  75. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
  76. <h3>Twitter: <a href="https://twitter.com/zimnovich">ZimNovich</a></h3>
  77. <div class="website">
  78. <div class="website-button"><a href="https://soundcloud.com/zimnovich/mobirrel-radio-edit">Listen it on SoundCloud</a></div>
  79. </div>
  80. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
  81. <h3>Instagram: <a href="https://instagram.com/zimnovich">ZimNovich</a></h3>
  82. </div>
  83. </div>
  84. </body>
  85. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement