Advertisement
Guest User

Untitled

a guest
Mar 17th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. Body {
  2.     margin: 0;
  3.     padding: 0;
  4.     /*background-color: #872229;*/
  5.     background-color: #FFF;
  6.     font-size: 1em;
  7.     font-family: sans-serif, arial, Helvetica;
  8.     line-height: 1.5;
  9. }
  10.  
  11. #wrapper {
  12.     width: 95%;
  13.     margin: auto;
  14. }
  15.  
  16. Header {
  17.     background-color: #450005;
  18.     padding-left: 10px;
  19.     color: #A53F46;
  20. }
  21.  
  22. .double_70_30 {
  23.     color: #C3676E;
  24.     display: grid;
  25.     grid-template-columns: 69.5% 29.5%;
  26.     grid-gap: 1%;
  27.     width: 100%;
  28. }
  29.  
  30. .triple_30_30_30 {
  31.     color: #C3676E;
  32.     display: grid;
  33.     grid-template-columns: 33% 33% 33%;
  34.     grid-gap: 0.5%;
  35.     width: 100%;
  36. }
  37.  
  38. .double_50_50 {
  39.     color: #C3676E;
  40.     display: grid;
  41.     grid-template-columns: 49.5% 49.5%;
  42.     grid-gap: 1%;
  43.     width: 100%;
  44. }
  45.  
  46. .single_100 {
  47.     color: #C3676E;
  48.     display: grid;
  49.     grid-template-columns: 100%;
  50.     grid-gap: 1%;
  51.     width: 100%;
  52. }
  53.  
  54. Section {
  55.     background-color: #872229;
  56.     padding: 0 10px 10px 10px;
  57.     margin-top: 10px;
  58. }
  59.  
  60. Section h1, section h2, section h3 {
  61.     text-align: center;
  62. }
  63.  
  64. h1 {
  65.     font-size: 3em;
  66.     color: #FFF;
  67. }
  68.  
  69. h2 {
  70.     font-size: 1.75em;
  71.     color: #C3676E;
  72. }
  73.  
  74. h3 {
  75.     font-size: 1.25em;
  76.     color: #C3676E;
  77. }
  78.  
  79. h4 {
  80.     color: #C3676E;
  81.     font-size: 1.05em;
  82. }
  83.  
  84. ul {
  85.     list-style-type: square;
  86.     color: #211F1E;
  87. }
  88.  
  89. section h2 {
  90.     color: #FFF;
  91. }
  92.  
  93. .contact{
  94.     text-align: center;
  95.     align-items: center;
  96.     display: inline;
  97. }
  98.  
  99. a:link, a:visited {
  100.     color: #C3676E;
  101. }
  102.  
  103. a:hover {
  104.     color: #FFF;
  105. }
  106.  
  107. a {
  108.     text-decoration: none;
  109. }
  110.  
  111. .skill-bar {
  112.     width: 75%;
  113.     background-color: #383433;
  114. }
  115.  
  116. .skills {
  117.     text-align: right;
  118.     color: #FFF;
  119.     background-color: #211F1E;
  120. }
  121.  
  122. .intermediate {
  123.     width: 50%;
  124. }
  125.  
  126. .beginner {
  127.     width: 25%;
  128. }
  129.  
  130. #skills h3{
  131.     text-align: left;
  132.     color: #FFF;
  133.     padding-right: 10px;
  134. }
  135.  
  136. #courses {
  137.     font-size: 1.25em;
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement