Guest User

Untitled

a guest
Dec 14th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. body {
  2. font-family: "Dotum";
  3. font-size: 16px;
  4. line-height: 1.6em;
  5. color: #666;
  6. background-color: #e1e1e1;
  7. }
  8.  
  9. a {
  10. color: #666;
  11. }
  12.  
  13. #container {
  14. width: 740px;
  15. background: #fff;
  16. margin: auto;
  17. }
  18.  
  19. header {
  20. padding: 30px 20px;
  21. background: #f4f4f4;
  22. }
  23.  
  24. header h1 {
  25. color: black;
  26. margin-bottom: 5px;
  27. }
  28.  
  29. header span {
  30. color: #dd2826;
  31. }
  32.  
  33. section {
  34. padding: 30px 20px 20px 20px;
  35. }
  36.  
  37. #search-form {
  38. display: block;
  39. margin-bottom: 15px;
  40. }
  41.  
  42. #search-form .fieldcontainer {
  43. display: block;
  44. position: relative;
  45. margin: 0 auto;
  46. }
  47. #search-form .search-field {
  48. display: inline-block;
  49. width: 400px;
  50. padding: 11px 7px;
  51. color: #1F618D;
  52. font-size: 1.6em;
  53. border: 1px solid #c8c8c8;
  54. border-radius: 1px;
  55. background: #fff;
  56. vertical-align: middle;
  57. box-shadow: 0 0 0 6px #f0f0f0;
  58. box-sizing: border-box;
  59. }
  60.  
  61. #search-form .search-btn {
  62. margin-left: 10px;
  63. padding: 7px 10px;
  64. height: 60px;
  65. font-size: 1.6em;
  66. border: none;
  67. vertical-align: middle;
  68. cursor: pointer;
  69. background: skyblue;
  70. }
  71.  
  72. /* Result items */
  73. #results {}
  74.  
  75. #results li.item {
  76. clear: both;
  77. padding: 14px 0;
  78. border-bottom: 1px dotted #ccc;
  79. list-style: none;
  80. overflow: auto;
  81. }
  82.  
  83. #results li.item a {
  84. display: block;
  85. text-decoration: none;
  86. }
  87. #results li.item img {
  88. float: left;
  89. margin-right: 10px;
  90. padding: 3px;
  91. width: 100px;
  92. border: 1px solid #ccc;
  93. }
  94. #results li.item h3 {
  95. margin: 0;
  96. }
  97. #results li.item p {
  98. margin: 0;
  99. }
  100.  
  101. #results li.item .description {
  102. padding-top: 4px;
  103. font-size: 0.9em;
  104. line-height: 1.5;
  105. }
  106. #results li.item .channel-title {
  107. color: #dd2826;
  108. }
Add Comment
Please, Sign In to add comment