Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. /* Table of contents.
  2. ----------------------------------------------------------------------
  3. -General Content
  4. -Typography
  5. -Header+Nav
  6. -Images+Meddia
  7. -Footer
  8. -Media Queries
  9. ----------------------------------------------------------------------*/
  10.  
  11. /*General Content
  12. ----------------------------------------------------------------------*/
  13. .main {padding-top: 3%;}
  14.  
  15. .row{padding: 2% 0;}
  16.  
  17. .blue {
  18. background-color: #76bfd7;
  19. }
  20.  
  21.  
  22.  
  23.  
  24. .inner{
  25. width: 50%;
  26. margin: 0 auto;
  27. }
  28.  
  29.  
  30.  
  31. /*Typography
  32. ----------------------------------------------------------------------*/
  33. h1{
  34. font-family: 'moonlight' ,sans-serif;
  35. color: white;
  36. font-size: 3.75em;
  37. text-align: center;
  38. }
  39. h2 {
  40. font-family:'montserratlight' ,sans-serif;
  41. font-size: 2.936875em;
  42. color: #878585;
  43. text-align: center;
  44. }
  45. h3{
  46. font-family: 'moonbold' ,sans-serif;
  47. font-size: 1.079375em;
  48. color: #343333;
  49. text-align: center;
  50. }
  51. /*Header+Nav
  52. ----------------------------------------------------------------------*/
  53. .main_nav{
  54. padding: 1% 0;
  55. display: block;
  56. width: 100%;
  57. }
  58.  
  59.  
  60.  
  61. /*Images+Media
  62. ----------------------------------------------------------------------*/
  63. img{
  64. display: block;
  65. margin: 0 auto;
  66. display: block;
  67. max-width: 100%;
  68. }
  69.  
  70. /*Footer
  71. ----------------------------------------------------------------------*/
  72. footer{
  73. width: 100%;
  74. bottom: 0;
  75.  
  76. }
  77. ul.social{
  78. display: block;
  79. margin: 5% 0;
  80. list-style-type: none;
  81. text-align: center;
  82. }
  83.  
  84. ul.social li{
  85. font-size:1em;
  86. display: inline;
  87. padding: 0 2%;
  88. }
  89.  
  90. ul.social li a{
  91. color: #ececec;
  92. }
  93.  
  94. ul.social li.dribble a:hover{color: #e040a9;}
  95. ul.social li.twitter a:hover{color: #258fc9;}
  96. ul.social li.behance a:hover{color: #212121;}
  97. ul.social li.googleplus a:hover{color: #e73710;}
  98. ul.social li.skype a:hover{color: #258fc9;}
  99.  
  100. p.copyright {
  101.  
  102. color: #373636;
  103. font-size: 1em;
  104. font-family:'arialbold', sans-serif;
  105. }
  106. /*Media Queries
  107. ----------------------------------------------------------------------*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement