Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="icon" type="image/png" href="wedge.png"/>
  5. </head>
  6. <style>
  7. body {
  8. background-color: #9966ff;
  9. }
  10. button {
  11. background-color: white;
  12. color: black;
  13. border: 2px solid #555555;
  14. padding: 16px 32px;
  15. font-family: monospace;
  16. text-align: center;
  17. text-decoration: none;
  18. display: inline-block;
  19. font-size: 16px;
  20. margin: 4px 2px;
  21. -webkit-transition-duration: 0.4s; /* Safari */
  22. transition-duration: 0.4s;
  23. cursor: pointer;
  24. }
  25. button:hover {
  26. background-color: #555555;
  27. color: white;
  28. }
  29. p {
  30. color: black;
  31. font-family: monospace;
  32. }
  33.  
  34. figcaption{
  35. font-family: monospace;
  36. }
  37. h1 {
  38. color: black;
  39. font-family: monospace;
  40. }
  41.  
  42. input[type="number"] {
  43. display: block;
  44. /*margin: 0;*/
  45. font-family: monospace;
  46. font-size: 18px;
  47. appearance: none;
  48. box-shadow: none;
  49. border-radius: none;
  50. padding: 10px;
  51. border: none;
  52. border-bottom: solid 2px #c9c9c9;
  53. transition: border 0.3s;
  54. opacity: 0;
  55. }
  56. input[type="number"]:focus {
  57. outline: none;
  58. border-bottom: solid 2px #666666;
  59. }
  60.  
  61. .img-circle {
  62. border-radius: 50%;
  63. }
  64. </style>
  65. <body>
  66. <script src="personalpage.js"></script>
  67. <center>
  68. <h1>About Me</h1>
  69. <p>What will it be?[TODO:CHANGE HERE]</p>
  70. </center>
  71. </body>
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement