Advertisement
Guest User

Untitled

a guest
Aug 18th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.25 KB | None | 0 0
  1. /*****************************
  2.          GENERAL CSS    
  3. *****************************/  
  4. body {
  5.     font-family: cursive;
  6. }
  7.  
  8. #wrapper {
  9.     max-width: 940px;
  10.     margin: 0 auto;
  11.     padding: 0 5%;
  12. }
  13.  
  14. a {
  15.     text-decoration: none;
  16.  
  17. }
  18.  
  19. a:visited {
  20.     color: dodgerblue;
  21. }
  22.  
  23. a:hover {
  24.     color: darkblue;
  25. }
  26.  
  27. img {
  28.     max-width: 100%;
  29. }
  30.  
  31. h3 {
  32.     margin: 0 0 1em 0;
  33. }
  34.  
  35.  
  36.  
  37.  
  38.  
  39. /*****************************
  40.            HEADING    
  41. *****************************/  
  42. #logo {
  43.     text-align: center;
  44.     margin: 0;
  45. }
  46.  
  47. h1 {
  48.     font-family: verdana;
  49.     margin: 0 0 5px 0;
  50.     padding: 2px;
  51.     font-size: 1.75em;
  52.     font-weight: normal;
  53.     line-height: 0.8em;
  54. }
  55.  
  56. h2 {
  57.     font-size: 1.3em;
  58.     margin: -5px 0 0;
  59.     font-weight: normal;
  60. }
  61.  
  62.  
  63.  
  64. /*****************************
  65.          NAVIGATION    
  66. *****************************/  
  67.  
  68. nav {
  69.     text-align: center;
  70.     padding: 10px 0;
  71.     margin: 20px 0 0;
  72. }
  73.  
  74. nav li {
  75.     display: inline;
  76. }
  77. nav a {
  78.     font-weight: 600;
  79.     padding: 15px 10px;
  80. }
  81.  
  82.  
  83.  
  84. /*****************************
  85.        PAGE: PORTFOLIO
  86. *****************************/
  87.  
  88. #gallery {
  89.     margin: 0;
  90.     padding: 0;
  91.     list-style: none;
  92. }
  93.  
  94. #gallery li {
  95.     float: left;
  96.     width: 45%;
  97.     margin: 2.5%;
  98.     background-color: #f5f5f5;
  99.     color: #bdc3c7;
  100. }
  101.  
  102. #gallery li a p {
  103.     color: dodgerblue;
  104.     margin: 0;
  105.     padding: 5%;
  106.     font-size: 0.75em;
  107. }
  108.  
  109.  
  110.  
  111. /*****************************
  112.         PAGE: ABOUT
  113. *****************************/
  114. .profile-photo {
  115.     display: block;
  116.     max-width: 150px;
  117.     margin: 0 auto 30px;
  118.     border-radius: 100%;
  119. }
  120. .body-link a, a:visited {
  121.     color: dodgerblue;
  122. }
  123.  
  124. .body-link a:hover {
  125.     color: darkblue;
  126. }
  127.  
  128.  
  129.  
  130. /*****************************
  131.         PAGE: CONTACT
  132. *****************************/
  133. .contact-info {
  134.     list-style: none;
  135.     padding: 0;
  136.     margin: 0;
  137.     font-size: 0.9em;
  138. }
  139.  
  140. .contact-info li a:hover {
  141.     color: darkblue;
  142. }
  143.  
  144. .contact-info a {
  145.     display: block;
  146.     min-height: 20px;
  147.     background-repeat: no-repeat;
  148.     background-size: 20px 20px;
  149.     padding: 0 0 0 30px;
  150.     margin: 0 0 10px;
  151. }
  152.  
  153. .contact-info li.phone a{
  154.     background-image: url('../img/phone.png');
  155. }
  156.  
  157. .contact-info li.mail a {
  158.     background-image: url('../img/mail.png');
  159. }
  160.  
  161. .contact-info li.twitter a {
  162.     background-image: url('../img/twitter.png');
  163. }
  164.  
  165.  
  166.  
  167. /*****************************
  168.            FOOTER
  169. *****************************/
  170.  
  171. footer {
  172.     font-size: 0.75em;
  173.     text-align: center;
  174.     color: #ccc;
  175.     padding-top: 50px;
  176.     clear: both;
  177.  
  178. }
  179.  
  180. .social-icon{
  181.     width: 20px;
  182.     height: 20px;
  183.     margin: 0 5px;
  184. }
  185.  
  186.  
  187.  
  188. /*****************************
  189.            COLORS    
  190. *****************************/  
  191. /* Website Body */
  192. body {
  193.     background-color: #fff;
  194.     color: #999;
  195. }
  196.  
  197. /* Green Header */
  198. header {
  199.     background-color: /* #6ab47b */ darkblue;
  200.     border-color: /* #599a68 */ blue;
  201. }
  202.  
  203. /* Nav Background on Mobile */
  204. nav {
  205.     background: /* #599a68 */ dodgerblue;
  206. }
  207.  
  208. /* Logo Text */
  209. h1, h2 {
  210.     color: #fff;
  211. }
  212.  
  213. /* Links */  
  214. a {
  215.     color: /* #6ab47b */ dodgerblue;
  216. }
  217.  
  218. /* Nav Links */
  219. nav a, nav a:visited {
  220.     color: #fff;
  221. }
  222.  
  223. /* Selected Nav Link */  
  224. nav a.selected, nav a:hover {
  225.     color: /* #32673f */ darkblue;
  226. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement