Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. *{ box-sizing: border-box; }
  2. .container {
  3. width: 80%;
  4. margin: 0 auto;
  5. }
  6. .header h1 {
  7. text-align: center;
  8. }
  9. .image {
  10. display: inline-block;
  11. float: left;
  12. width: 100%;
  13. }
  14.  
  15. .column {
  16. display: inline-block;
  17. float: left;
  18. width: 30%;
  19. padding: 30px;
  20. }
  21.  
  22. .main-text {
  23. clear: both;
  24. padding-top: 60px;
  25. padding: top right bottom left;
  26. }
  27.  
  28. .intro {
  29. padding: 0 20px;
  30. }
  31.  
  32. .skill {
  33. padding: 20px 20px;
  34. background-color: #5AD4C2;
  35. }
  36.  
  37. #skill-list {
  38. margin-left: 50px;
  39. }
  40.  
  41. body {
  42. background-color: #fffeea;
  43. color: #34495e;
  44. padding-top: 114px;
  45. }
  46.  
  47. .nav a:hover {
  48. color: #ff0;
  49. text-decoration: none;
  50. }
  51.  
  52. .nav ul li{
  53. display: inline-block;
  54. padding: 20px 10px;
  55. }
  56.  
  57. .nav {
  58. background-color: black;
  59. position: fixed;
  60. width: 100%;
  61. top: 0;
  62. }
  63.  
  64. .nav ul li a{
  65. color: #AFEEEE;
  66. text-transform: uppercase;
  67. letter-spacing: 0.05em;
  68. transition: color 600ms;
  69. -webkit-transition: color 600ms;
  70. }
  71.  
  72. .nav ul{
  73. float: right;
  74. padding-right: 20px;
  75. }
  76.  
  77. .card {
  78. display: inline-block;
  79. text-align: center;
  80. padding-top: 10px;
  81. padding-left: 20px;
  82. padding-bottom: 10px;
  83. }
  84.  
  85.  
  86.  
  87. /*Typography*/
  88.  
  89. h1,
  90. h2,
  91. h3 {
  92. font-family: Futura, Helvetica, Arial, sans-serif;
  93. }
  94.  
  95. p,
  96. li {
  97. font-family: 'josefin sans', Palatino, serif;
  98. }
  99.  
  100. .intro p {
  101. font-family: 'josefin sans', sans-serif;
  102. font-size: 1em;
  103. font-weight: 100;
  104. -webkit-margin-before: 0;
  105. }
  106.  
  107. .skill h3 {
  108. text-align: center;
  109. text-transform: uppercase;
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement