Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. about_styles.ccs
  2. *{box-sizing: border-box;}
  3.  
  4. h1,
  5. h2,
  6. h3 {
  7. font-family: Futura, Helvetica, Arial, sans-serif;
  8. }
  9.  
  10. .container {
  11. width: 80;
  12. margin: 0 auto;
  13. }
  14.  
  15. h1 {
  16. text-align: center;
  17. }
  18.  
  19. .static {
  20. position:static;
  21. background-color:#b3dbd9;
  22. /* Default. Element is in flow of document; properties like left, right, top, z-index, etc have no effect.*/
  23. }
  24. .image{
  25. display: inline-block;
  26. float: left;
  27. }
  28. .column{
  29. display:inline-block;
  30. float: left;
  31. padding: 0 20px;
  32. }
  33.  
  34. .main-text{
  35. clear: both;
  36. width: 30%;
  37. padding-top: 40px;
  38. padding-left: 40px;
  39. }
  40.  
  41. .column{
  42. width: 30%;
  43.  
  44.  
  45. #skill_list
  46. {
  47. margin-left: 50px;
  48. }
  49. /*Typography*/
  50.  
  51. .intro p {
  52. font-family: Futura, Helvetica, Arial, sans-serif;
  53. font-size: 3em;
  54. font-weight: 100;
  55. -webkit-margin-before:0;
  56. }
  57.  
  58. .skills h3{
  59. text-align: center;
  60. text-transform: uppercase;
  61. margin-left: 50px;
  62. background-color: #5AD4C2;
  63. color:#FFF;
  64. padding-top: 0px;
  65. padding-bottom: 20px;
  66. }
  67.  
  68.  
  69. body{
  70. background-color: #fffeea;
  71. color: #34495e;
  72. }
  73.  
  74. .nav {
  75. margin-top: 20px;
  76. height: 40px;
  77. background: white;
  78. }
  79. .nav ul {
  80. margin: 0;
  81. padding: 0;
  82. }
  83. .nav ul li {
  84. list-style: none;
  85. }
  86. .nav ul li a {
  87. text-decoration: none;
  88. float: left;
  89. display: block;
  90. padding: 10px 20px;
  91. color: black;
  92. }
  93. .nav ul li a:hover {
  94. color: white;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement