Advertisement
Guest User

Untitled

a guest
May 30th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. /*============================*/
  2. /*STYLING for the ABOUT PAGE*/
  3. /*============================*/
  4.  
  5. .container{
  6. width: 80%;
  7. margin: 0 auto;
  8. }
  9. .header{
  10. margin-bottom: 40px;
  11. }
  12. .header h1{
  13. text-align: center;
  14. font-weight: 700;
  15. }
  16.  
  17. .image {
  18. display: inline-block;
  19. float: left;
  20. }
  21.  
  22. .column{
  23. display: inline-block;
  24. float: left;
  25. width: 30%;
  26. padding: 0 20px;
  27. }
  28.  
  29. .skills{
  30. background-color: #5AD4C2;
  31. color: #fff;
  32. }
  33.  
  34. .main-text{
  35. clear: both;
  36. padding-top: 60px;
  37. }
  38.  
  39. .about-image{
  40. width: 100%;
  41. }
  42.  
  43. #skill-list{
  44. margin-left: 10px;
  45. }
  46.  
  47. /*=================
  48. **TYPOGRAPHY**
  49. =================*/
  50.  
  51. h1,
  52. h2,
  53. h3
  54. {
  55. font-family: Raleway, Futura, Helvetica, Arial, sans-serif !important;
  56. letter-spacing: 0.15em;
  57. }
  58.  
  59. p,
  60. li,
  61. a{
  62. font-family: 'Roboto Slab', 'Big Caslon', 'Times New Roman', serif;
  63. }
  64.  
  65. .intro h2,
  66. .main-text h3{
  67. font-family: Raleway, Futura, Helvetica, Arial, sans-serif;
  68. font-size: 2em;
  69. font-weight: 700;
  70. -webkit-margin-before: 0;
  71. }
  72.  
  73. .intro p{
  74. font-family: Raleway, Futura, Helvetica, Arial, sans-serif;
  75. font-size: 1.35em;
  76. font-weight: 400;
  77. -webkit-margin-before: 0;
  78. }
  79.  
  80. .skills h3{
  81. text-align: center;
  82. text-transform: uppercase;
  83. }
  84.  
  85. .main-text p{
  86. font-size: 1.25em;
  87. }
  88.  
  89.  
  90. /*==========================
  91. *****NAVIGATION***********
  92. ==========================*/
  93. .navbar-inverse{
  94. background-color: rgba(0,0,0,0.75) !important;
  95. }
  96. .navbar-brand a{
  97. color: rgba(255, 254, 234,0.8);
  98. text-transform: uppercase;
  99. font-size: .8em;
  100. letter-spacing: 0.5em
  101. }
  102.  
  103. .dropdown-menu{
  104. background-color: rgba(0,0,0,0.75) !important;
  105. }
  106. .navbar-nav li>a{
  107. text-transform:uppercase;
  108. color: #fffeea;
  109. letter-spacing: 0.15em;
  110. }
  111.  
  112. .dropdown-menu li>a{
  113. text-transform:uppercase;
  114. color: #fffeea;
  115. letter-spacing: 0.1em;
  116. }
  117. /*==========================*/
  118. /*Navigation Link Hover*/
  119. /*==========================*/
  120. .nav.navbar-nav a:hover,
  121. .navbar-brand a:hover,
  122. .nav.navbar-nav a:focus{
  123. text-decoration:none;
  124. background-color: rgba(255, 254, 234, .3);
  125. margin-left:10px;
  126. color: #5AD4C2;
  127. letter-spacing: 0.5em;
  128. border-radius: 1em;
  129. padding: 3px 0 3px 5px;
  130. transition: 600ms;
  131. -webkit-transition: 600ms;
  132. }
  133.  
  134.  
  135. .nav.navbar-nav>li>a:hover,
  136. .nav.navbar-nav>li>a:active{
  137. text-decoration:none;
  138. color: #5AD4C2;
  139. letter-spacing: 0.5em;
  140. margin-top: 12px;
  141. background-color: rgba(255, 254, 234, .3);
  142. transition: 600ms;
  143. -webkit-transition: 600ms;
  144. }
  145.  
  146. .dropdown-menu li>a:hover{
  147. text-transform:uppercase;
  148. color: #fffeea;
  149. letter-spacing: 0em;
  150. text-align: center;
  151. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement