Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. /***********
  2. GENERAL
  3. ************/
  4.  
  5. body {
  6. font-family: 'Trirong', serif;
  7. }
  8.  
  9. #wrapper {
  10. max-width: 940px;
  11. margin: 0 auto;
  12. padding: 0 5%;
  13. }
  14.  
  15. a {
  16. text-decoration: none;
  17. }
  18.  
  19. img {
  20. max-width: 100%;
  21. }
  22.  
  23. /****************
  24. HEADER
  25. *****************/
  26.  
  27. header {
  28. float: left;
  29. margin: 0 0 30px 0;
  30. padding: 5px 0 0 0;
  31. width: 100%;
  32. }
  33.  
  34. #logo {
  35. text-align: center;
  36. margin: 0;
  37. }
  38.  
  39. h1 {
  40. font-family: 'Lobster', serif;
  41. padding-top: 10px;
  42. margin: 15px 0;
  43. font-size: 1.75em
  44. font-weight: normal;
  45. }
  46.  
  47. h2 {
  48. font-family: 'Trirong', serif;
  49. font-size: 0.85em;
  50. margin: -5px 0 0;
  51. font-weight: normal;
  52. }
  53. /****************
  54. NAVIGATION
  55. *****************/
  56.  
  57. nav {
  58. font-family: 'Trirong', serif;
  59. text-align: center;
  60. padding: 10px 0;
  61. margin: 20px 0 0;
  62. }
  63.  
  64. nav ul {
  65. list-style: none;
  66. margin: 0 10px;
  67. padding: 0;
  68. }
  69.  
  70. nav li {
  71. display: inline-block;
  72. }
  73.  
  74. nav a {
  75. font-weight: 800;
  76. padding: 15px 10px;
  77. }
  78.  
  79. /*******************
  80. PAGE:PORTFOLIO
  81. ********************/
  82.  
  83. #gallery {
  84. margin: 0;
  85. padding: 0;
  86. list-style: none;
  87. }
  88.  
  89. #gallery li {
  90. float: left;
  91. width: 45%;
  92. margin: 2.5%;
  93. background-color: #f5f5f5;
  94. color: #bdc3c7;
  95. }
  96.  
  97. #gallery li a p {
  98. margin: 0;
  99. padding: 5%;
  100. font-size: 0.80em;
  101. color: #bdc3c7;
  102. }
  103.  
  104. /*******************
  105. COLORS
  106. ********************/
  107.  
  108. header {
  109. background-color: #47FFF2;
  110. }
  111.  
  112. h1, h2 {
  113. color: #4A7F7C;
  114. }
  115.  
  116. nav {
  117. background: #237F79;
  118. }
  119.  
  120. nav a, nav a:visited{
  121. color: white;
  122. }
  123.  
  124. nav a.selected, nav a:hover{
  125. color: cyan;
  126. }
  127.  
  128. /****************
  129. FOOTER
  130. *****************/
  131.  
  132. footer {
  133. text-align: center;
  134. clear:both;
  135. font-size: 0.75em;
  136. padding-top: 50px
  137.  
  138. .social-icon {
  139. width: 20px;
  140. height: 20px;
  141. margin: 0 5px;
  142. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement