Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. /* This is a comment example */
  2.  
  3. /* [Color] Hex: */
  4.  
  5.  
  6. body{
  7. font-family: helvetica, arial, sans-serif;
  8. font-size: 22px;
  9.  
  10. background-image: url("img/thisiguess.jpg");
  11. background-position: top left;
  12. background-size: 100%;
  13. background-attachment: fixed;
  14. background-repeat: no-repeat;
  15. }
  16.  
  17. #wrapper{
  18. width: 75%;
  19. background:rgba(9, 12, 14,.4);
  20. background-size: cover;
  21. margin: 200px auto;
  22. }
  23.  
  24. h1{ /* Main Title*/
  25. padding-top: 25px;
  26. padding-bottom: 25px;
  27. font-size: 50px;
  28. text-align: center;
  29. }
  30.  
  31. #poem {
  32. width: 100%;
  33. font-family: georgia, serif;
  34. color: white;
  35. font-size: 1em;
  36. text-align: center;
  37. width:100%;
  38. margin: 10px;
  39. }
  40.  
  41. #bio {
  42. color: white;
  43. font-size:1em;
  44. width: 100%;
  45. text-align: left;
  46. margin:25px;
  47. }
  48.  
  49. img {
  50. width: 45%;
  51. float: right;
  52. border: 1.5px solid black;
  53. }
  54.  
  55. figcaption {
  56. float: right;
  57. width: 30%;
  58. text-align: center;
  59. font-style: italic;
  60. border: thin white solid;
  61. margin: 0.5em;
  62. padding: 0.5em;
  63. }
  64.  
  65. footer {
  66. clear:both;
  67. }
  68.  
  69. a:link, a:visited{
  70. color: purple;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement