Advertisement
Guest User

Untitled

a guest
Aug 12th, 2013
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. html, body {
  2. background-color: #fafafa;
  3. }
  4.  
  5. /* HEADER SECTION STYLING */
  6. .header-section {
  7. display: block;
  8. padding-top: 60px;
  9. padding-bottom: 50px;
  10. background-color: #fafafa;
  11. }
  12.  
  13. #head1, #head2 {
  14. display: inline;
  15. }
  16.  
  17. #head1 {
  18. font-family: Impact, Charcoal, sans-serif;
  19. color: #3a81ba;
  20. font-size: 100px;
  21. font-weight: 400;
  22. letter-spacing: 2px;
  23. }
  24.  
  25. #head2 {
  26. color: #963334;
  27. font-family: "Great Vibes";
  28. font-size: 100px;
  29. font-weight: 700;
  30. }
  31.  
  32.  
  33. /* INPUT SECTION STYLING */
  34. .input-section {
  35. background-color: #fafafa;
  36. padding-bottom: 20px;
  37. }
  38.  
  39. #search-input {
  40. width: 42%;
  41. margin-right: 6px;
  42. }
  43.  
  44. #search-input:focus {
  45. background: white;
  46. }
  47.  
  48. #search-btn {
  49. margin-left: 6px;
  50. background-image: linear-gradient(to bottom, #3a81ba, #3a81ba);
  51. }
  52.  
  53.  
  54. /*RESULTS SECTION STYLING*/
  55. #results-container {
  56. margin-top: 9px;
  57. margin-bottom: 6px;
  58.  
  59. }
  60.  
  61.  
  62. .result {
  63. padding-top: 10px;
  64. padding-bottom: 10px;
  65. width: 42%;
  66. }
  67.  
  68. .result-title {
  69. font-size: 16px;
  70. font-weight: 700;
  71. color: #0000FF;
  72. text-decoration: underline;
  73. }
  74.  
  75.  
  76. .result-url {
  77. margin-top: -2px;
  78. color: #093;
  79. font-size: 14px;
  80. }
  81.  
  82. .result-summary {
  83. margin-top: -1px;
  84. margin-bottom: 1px;
  85. font-size: 13px;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement