-Annie-

06.Conference(Styles)

Feb 6th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.89 KB | None | 0 0
  1. body {
  2.     padding: 0;
  3.     margin: 0;
  4.     font-family: 'Lato';
  5.     font-style: normal;
  6.     font-weight: 300;  
  7.     font-size: 16px;
  8. }
  9.  
  10. header, footer {
  11.     background-color: #2A3F52;
  12.     color: rgb(255, 255, 255);
  13. }
  14.  
  15. header {
  16.     height: 550px;
  17. }
  18.  
  19. h1 {
  20.     text-transform: uppercase;
  21. }
  22.  
  23. li {
  24.     list-style-type: none;
  25.     display: inline;
  26. }
  27.  
  28. li a {
  29.     text-decoration: none;
  30.     color: rgb(255, 255, 255);
  31.     font-size: 20px;
  32. }
  33.  
  34. h1 {
  35.     text-align: center;
  36.     clear: both;
  37.     font-size: 50px;
  38.     font-weight: 100;
  39.     margin-top: 130px;
  40. }
  41.  
  42. .date-place {
  43.     float: right;
  44.     color: #5A716A;
  45.     padding-right: 20px;
  46. }
  47.  
  48. h2 {
  49.     text-align: center;
  50.     color: #5A716A;
  51.     font-size: 35px;
  52. }
  53.  
  54. .button {
  55.     border: 1px solid rgb(255, 255, 255);
  56.     color: rgb(255, 255, 255);
  57.     background-color: transparent;
  58.     margin: 0 auto;
  59.     display: table;
  60.     margin-top: 90px;
  61.     text-decoration: none;
  62.     padding: 20px;
  63.     border-radius: 5px;
  64. }
  65.  
  66. .button:hover {
  67.     cursor: pointer;
  68.     color: #2A3F52;
  69.     background-color: rgb(255, 255, 255);
  70. }
  71.  
  72. ul p {
  73.     clear: both;
  74.     width: 21%;
  75. }
  76.  
  77. main {
  78.     background-color: rgb(255, 255, 255);
  79.     margin-top: 150px;
  80.     margin-bottom: 150px;
  81. }
  82.  
  83. .centered-p {
  84.     text-align: center;
  85.     font-size: 17px;
  86.     max-width: 948px;
  87.     margin: 0 auto;
  88. }
  89.  
  90. main ul li {
  91.     display: inline-block;
  92.     max-width: 33%;
  93. }
  94.  
  95. main li, main p, main h3 {
  96.     color: #ADB7BC ;
  97. }
  98.  
  99. header nav li a {
  100.     text-transform: uppercase;
  101.     padding-right: 20px;
  102.     color: #5A716A;
  103. }
  104.  
  105. header nav {
  106.     padding-top: 10px
  107. }
  108.  
  109. section {
  110.     display: inline-block;
  111.     margin-right: 70px;
  112.     margin-left: 89px;
  113. }
  114.  
  115. main p {
  116.     max-width: 280px;
  117. }
  118.  
  119. footer li a {
  120.     padding-right: 20px;
  121. }
  122.  
  123. footer nav {
  124.     display: table;
  125.     float: right;
  126. }
  127.  
  128. footer {
  129.     padding: 75px;
  130. }
  131.  
  132. footer p {
  133.     font-size: 25px;
  134.     font-weight: 100;
  135.     float: left;
  136.     margin: 10px;
  137. }
  138.  
  139. footer ul {
  140.     float: right;
  141. }
Add Comment
Please, Sign In to add comment