Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. body {
  2. margin-top: 70px;
  3. }
  4.  
  5. /*.jumbotron {
  6. background-image: url("../images/desert.jpg");
  7. background-size: cover;
  8. width: 100%;
  9. height: 40em;
  10. }*/
  11.  
  12. /*html {
  13. background: url("../images/writer.png") no-repeat center fixed;
  14. -webkit-background-size:cover;
  15. -moz-background-size:cover;
  16. -o-background-size:cover;
  17. background-size:cover;
  18. }*/
  19. .container-fluid{
  20. padding-left: 0px;
  21. padding-right: 0px;
  22. }
  23.  
  24. .jumbotron h4 {
  25. color: black;
  26. }
  27.  
  28.  
  29. .jumbotron a {
  30. color: white;
  31.  
  32. }
  33.  
  34. .jumbotron p {
  35. color: white;
  36. }
  37.  
  38. /* Navigation bar styles */
  39. .nav {
  40. background-color: orange;
  41. width: 100%;
  42. position: fixed;
  43. top: 0;
  44. z-index: 1;
  45. }
  46.  
  47. .nav ul {
  48. float: right;
  49. }
  50.  
  51. .nav ul li {
  52. display: inline-block;
  53. padding: 20px 10px 20px ;
  54. }
  55.  
  56. .nav ul li a {
  57.  
  58. text-transform: uppercase;
  59. letter-spacing: 0.05em;
  60.  
  61. }
  62.  
  63. .nav a:hover {
  64. color: #ff0;
  65. text-decoration: none;
  66. transition: color 600ms;
  67. -webkit-transition:color 600ms;
  68. }
  69. .container-fluid a:hover{
  70. color: red;
  71. transition: color 600ms;
  72. -webkit-transition:color 600ms;
  73. }
  74. /* what follows will deal with Typography*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement