Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. /*
  2. fb.html stylesheet
  3. 2017-01-20
  4. kidkkr
  5. */
  6. body {
  7. padding: 0;
  8. margin: 0;
  9. }
  10.  
  11. #header, #content, #footer {
  12. /* 가로폭 설정 */
  13. width: auto;
  14. padding-left: 120px;
  15. padding-right: 120px;
  16. }
  17.  
  18. #header {
  19. height: 80px;
  20.  
  21. background-color: #3b5998;
  22. background-image: linear-gradient(#4e69a2, #3b5998 50%);
  23. }
  24.  
  25. #header #logo {
  26. width: 55%;
  27. height: 100%;
  28. float: left;
  29. }
  30.  
  31. #header #logo img {
  32. width: 170px;
  33. margin-top: 30px;
  34. }
  35.  
  36. #header #login {
  37. font-size: 0.7em;
  38. width: 45%;
  39. height: 100%;
  40. float: right;
  41. padding-top: 30px;
  42. color: lightgrey;
  43. }
  44.  
  45. #header #login #id, #password {
  46. float: left;
  47. }
  48.  
  49. #header #login #id {
  50. width: 40%;
  51. }
  52.  
  53. #header #login #password {
  54. width: 60%;
  55. }
  56.  
  57. #header #login label {
  58. color: white;
  59. }
  60.  
  61. #header #login_msg {
  62. color: #90B0D5;
  63. }
  64.  
  65. #content {
  66. height: 650px;
  67. background-color: lightgrey;
  68. background-image: linear-gradient(#FFFFFF, #D4D9E8 90%);
  69. }
  70.  
  71. #content #msg {
  72. width: 55%;
  73. height: 100%;
  74. float: left;
  75. color: #11395E;
  76. }
  77. #content #msg img {
  78. width: 100%;
  79. }
  80.  
  81. #content #apply_form {
  82. width: 45%;
  83. height: 100%;
  84. float: left;
  85. }
  86.  
  87. #apply_form div {
  88. width: 365px;
  89. }
  90.  
  91. #apply_form input, #apply_form h3 {
  92. margin: 4px;
  93. }
  94.  
  95. #apply_form input{
  96. font-size: 1.3em;
  97. height: 2em;
  98. padding-left: 0.5em;
  99. border-radius: 5px;
  100. border: 1px solid #BDC7D7;
  101.  
  102. }
  103. #apply_form #last_name {
  104. width: 120px;
  105. }
  106. #apply_form #first_name {
  107. width: 200px;
  108. }
  109. #apply_form #address, #apply_form #address_rep, #apply_form #password {
  110. width: 342px;
  111. }
  112.  
  113. #apply_form #date {
  114. width: 180px;
  115. height: 4em;
  116. float: left;
  117. }
  118.  
  119. #apply_form #date_msg {
  120. width: 180px;
  121. float: left;
  122. height: 4em;
  123. }
  124.  
  125. #apply_form #date input {
  126. width: 160px;
  127. }
  128.  
  129. #apply_form #date_msg p{
  130. font-size: 0.8em;
  131. color: #3861A2;
  132. }
  133.  
  134. #apply_form #gender input {
  135. font-size: 0.5em;
  136. }
  137.  
  138. #apply_form #gender {
  139. font-size: 1.2em;
  140. }
  141.  
  142. #apply_form #privacy {
  143. font-size: 0.8em;
  144. color: grey;
  145. }
  146.  
  147. #apply_form #submit {
  148. width: 230px;
  149. text-align: center;
  150. height: 30px;
  151. border-radius: 4px;
  152. padding: 0;
  153.  
  154. color: #FFFFFF;
  155.  
  156. background-image: linear-gradient(#67A957, #598847 100%);
  157. border-color: #3D6D27;
  158. }
  159.  
  160.  
  161. #footer {
  162.  
  163. }
  164.  
  165. #footer hr {
  166. border: 1px solid lightgrey;
  167. }
  168.  
  169. #footer #copyright {
  170. color: #727272;
  171. font-size: 0.7em;
  172. font-weight: bold;
  173. }
  174.  
  175. #button_login {
  176. background-color: #4469B0;
  177. color: #FDFDFE;
  178. border-radius: 3px;
  179. border: 0px;
  180. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement