Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. html, body, div, span, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. abbr, address, cite, code,
  4. del, dfn, em, img, ins, kbd, q, samp,
  5. small, strong, sub, sup, var,
  6. b, i,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, figcaption, figure,
  11. footer, header, hgroup, menu, nav, section, summary,
  12. time, mark, audio, video {
  13. margin:0;
  14. padding:0;
  15. border:0;
  16. outline:0;
  17. font-size:100%;
  18. vertical-align:baseline;
  19. background:transparent;
  20. }
  21.  
  22. body {
  23. line-height:1;
  24. }
  25.  
  26. article,aside,details,figcaption,figure,
  27. footer,header,hgroup,menu,nav,section {
  28. display:block;
  29. }
  30.  
  31. nav ul {
  32. list-style:none;
  33. }
  34.  
  35. blockquote, q {
  36. quotes:none;
  37. }
  38.  
  39. blockquote:before, blockquote:after,
  40. q:before, q:after {
  41. content:'';
  42. content:none;
  43. }
  44.  
  45. a {
  46. margin:0;
  47. padding:0;
  48. font-size:100%;
  49. vertical-align:baseline;
  50. background:transparent;
  51. }
  52.  
  53. /* change colours to suit your needs */
  54. ins {
  55. background-color:#ff9;
  56. color:#000;
  57. text-decoration:none;
  58. }
  59.  
  60. /* change colours to suit your needs */
  61. mark {
  62. background-color:#ff9;
  63. color:#000;
  64. font-style:italic;
  65. font-weight:bold;
  66. }
  67.  
  68. del {
  69. text-decoration: line-through;
  70. }
  71.  
  72. abbr[title], dfn[title] {
  73. border-bottom:1px dotted;
  74. cursor:help;
  75. }
  76.  
  77. table {
  78. border-collapse:collapse;
  79. border-spacing:0;
  80. }
  81.  
  82. /* change border colour to suit your needs */
  83. hr {
  84. display:block;
  85. height:1px;
  86. border:0;
  87. border-top:1px solid #cccccc;
  88. margin:1em 0;
  89. padding:0;
  90. }
  91.  
  92. input, select {
  93. vertical-align:middle;
  94. }
  95.  
  96. /*MY CODE*/
  97.  
  98. * {
  99. text-decoration: none;
  100. }
  101.  
  102. body {
  103. background-color: #f3f3f3
  104. }
  105.  
  106. header {
  107. background-color: white;
  108. width: 100%;
  109. height: 100%;
  110. }
  111.  
  112. header .header-brand {
  113. font-family: Indie Flower;
  114. font-size: 24px;
  115. color: #111;
  116. font-weight: 900;
  117. text-transform: uppercase;
  118. display: block;
  119. margin: 0 auto;
  120. text-align: center;
  121. padding: 20px 0px;
  122. }
  123.  
  124. header nav ul {
  125. display: block;
  126. margin: 0 auto;
  127. width: fit-content;
  128. }
  129.  
  130. header nav ul li {
  131. display: inline-block;
  132. float: left;
  133. list-style: none;
  134. padding: 0 16px;
  135. }
  136.  
  137. header nav ul li a {
  138. font-family: Indie Flower;
  139. font-size: 16px;
  140. color: #111;
  141. }
  142.  
  143. header .header-cases {
  144. display: none;
  145. }
  146.  
  147. /*INDEX*/
  148. .index-banner {
  149. width: 100%;
  150. height: calc(100vh - 100px);
  151. background-image: url('images/programmer.jpg');
  152. background-repeat: no-repeat;
  153. background-position: center;
  154. background-size: cover;
  155. }
  156. .index-banner h2 {
  157. font-family: ZCOOL KuaiLe;
  158. font-size: 50px;
  159. color: #fff
  160.  
  161. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement