Guest User

Untitled

a guest
Dec 11th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. /* Paradise Scraper */
  2.  
  3. body{
  4. margin: 0;
  5. }
  6.  
  7. #topBar{
  8. background: #39c;
  9. width: 100%;
  10. height: 120px;
  11. box-shadow: 0 0 8px black;
  12. }
  13.  
  14. #topBar #title{
  15. font-size: 76px;
  16. font-family: Damion, cursive;
  17. color: white;
  18. text-shadow: 1px 1px 8px black;
  19. margin: 10px;
  20. }
  21.  
  22. #topBar #description{
  23. position: fixed;
  24. font-family: Damion, cursive;
  25. font-size: 24px;
  26. color: white;
  27. text-shadow: 0 0 2px lightyellow;
  28. margin-top: -20px;
  29. margin-left: 430px;
  30. }
  31.  
  32. #bottomBar{
  33. position: fixed;
  34. bottom: 0;
  35. background: rgb(20,20,20);
  36. color: lightgray;
  37. width: 100%;
  38. height: 25px;
  39. text-align: center;
  40. box-shadow: -1px -1px 8px black;
  41. padding-top: 6px;
  42. }
  43.  
  44. #bottomBar #rights{
  45. font: bold 12px sans;
  46. }
  47.  
  48. #bottomBar a{
  49. color: white;
  50. text-decoration: none;
  51. }
  52.  
  53. #content{
  54. position: relative;
  55. margin: 12px;
  56. margin-bottom: 50px;
  57. }
  58.  
  59. #content h2{
  60. font-family: Revalia;
  61. font-size: 28px;
  62. }
  63.  
  64. #content{
  65. font-family: arial;
  66. }
  67.  
  68.  
  69. [type=text], [type=email], [type=number]{
  70. font-family: arial;
  71. cursor: default;
  72. transition: .2s all ease-out;
  73. text-shadow: 0 0 1px gray;
  74. }
  75.  
  76.  
  77. [type=text]:focus, [type=email]:focus, [type=number]:focus{
  78. background: rgba(20,20,20,.1);
  79. outline: 1px rgba(20,20,20,.1) solid;
  80. }
  81.  
  82. [type=submit]{
  83. padding: 8px;
  84. }
Add Comment
Please, Sign In to add comment