Advertisement
Guest User

Untitled

a guest
May 29th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. * { box-sizing: border-box; }
  2.  
  3. body {
  4. background-color: #fffeea;
  5. color: #34495e;
  6. position: relative;
  7. }
  8.  
  9. /* nav */
  10. .navbar {
  11. background-color: black;
  12. }
  13.  
  14. .navbar ul li {
  15. float: right;
  16. padding: 10px 0 10px;
  17. }
  18.  
  19.  
  20. .navbar a {
  21. text-decoration: none;
  22. text-transform: uppercase;
  23. color: white;
  24. padding: 20px 10px 20px;
  25. }
  26.  
  27. .navbar a:hover {
  28. color: red;
  29. transition: color 600ms;
  30. -webkit-transition: color 600ms;
  31. }
  32.  
  33. .nav {
  34. float:right;
  35. }
  36. /* /nav */
  37.  
  38. /* contacts */
  39. .col a {
  40. margin-top: 20px;
  41. }
  42.  
  43. ul {
  44. list-style-type: none;
  45. }
  46.  
  47. li {
  48. padding-top: 15px;
  49. }
  50.  
  51. /* /contacts */
  52. /* Form */
  53. .form-control {
  54. width: 90%;
  55. }
  56.  
  57.  
  58. label {
  59. margin-left: 8px;
  60. padding-top: 20px;
  61. }
  62.  
  63. #message {
  64. margin-bottom: 20px;
  65. }
  66. /* /Form */
  67.  
  68. /* Typography */
  69.  
  70. h1,
  71. h2,
  72. h3,
  73. a {
  74. font-family: Futura, Helvetica, Arial, sans-serif;
  75. }
  76.  
  77. p,
  78. li {
  79. font-family: Bodoni MT, Big Caslon, serif;
  80. }
  81.  
  82. .intro p {
  83. font-size: 2.5em;
  84. font-weight: 100;
  85. -webkit-margin-before: 0;
  86. }
  87.  
  88. .panel-body {
  89. font-family: Futura, Helvetica, Arial, sans-serif;
  90. }
  91.  
  92. /* /Typography */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement