Advertisement
Younoussa

Untitled

Aug 17th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.46 KB | None | 0 0
  1. *
  2. {
  3.     box-sizing: border-box;
  4. }
  5.  
  6. body
  7. {
  8.     font-family: 'Times New Roman', Times, serif;
  9.     font-size: 16px;
  10.     background: black;
  11.     margin: 0;
  12.     color: white;
  13. }
  14. .topbar
  15. {
  16.     position: fixed;
  17.     top: 0;
  18.     left: 0;
  19.     right: 0;
  20.     width: 100%;
  21.     height: auto;
  22.     z-index: 2;
  23.     display: flex;
  24.  
  25. }
  26. .topbar-nav
  27. {
  28.  
  29. margin-top:28px;
  30. margin-left: 300px;
  31. margin-right: 0;
  32. }
  33. .topbar-nom
  34. {
  35. margin-left: 50px;
  36.  
  37.  
  38. }
  39. .topbar-nom h1 a
  40. {
  41.  
  42.     text-decoration:none;
  43.     font-weight: bolder;
  44.     color: white;
  45. }
  46. .topbar-nav a
  47. {
  48.     color:white;
  49.     text-decoration: none;
  50.     padding: 0 20px;
  51.     font-weight: 500;
  52. }
  53. .topbar-nav a:hover,
  54. .topbar-nav a.active
  55. {
  56.     border-bottom: 2px solid #ffbd39;
  57.     color: #ffbd39;
  58. }
  59. .clear
  60. {
  61.     clear: both;
  62. }
  63. .container
  64. {
  65.  
  66.     margin-top:100px;
  67.     width: 100%;
  68.     height: auto;
  69.     z-index: 1;
  70.  
  71. }
  72. .article-acceuil
  73. {
  74.     display: flex;
  75.     align-items: center;
  76.     color: white;
  77.  
  78. }
  79. .article-acceuil.image-hero
  80. {
  81.  order: 2;
  82. }
  83. .article-acceuil.texte
  84. {
  85.    order: 1;
  86. }
  87. .article-acceuil h1
  88. {
  89.     font-size: 90px;
  90.     margin-left: 40px;
  91.     margin-top: -11px;
  92.     margin-bottom: 0;
  93. }
  94. .article-acceuil h2
  95. {
  96.    font-size:40px;
  97.    margin-left: 40px;
  98.    line-height: 1.6;
  99. }
  100. .article-acceuil span.salutation
  101. {
  102.     font-size: 20px;
  103.     margin-left: 40px;
  104.     margin-top: 80px;
  105.     margin-bottom: 0;
  106. }
  107.  
  108. .article-acceuil p a.boutton-1
  109. {
  110.  
  111.     display: inline-block;
  112.     background: #ffbd39;
  113.     margin-left: 50px;
  114.     margin-top: 4px;
  115.     padding-top:22px;
  116.     font-size: 14px;
  117.     font-weight: 900;
  118.     width: 120px;
  119.     text-align:center;
  120.     height: 65px;
  121.     border-radius: 45px;
  122.     text-decoration: none;
  123.     color: black;
  124. }
  125.  
  126. .article-acceuil p a.boutton-2
  127. {
  128.  
  129.     display: inline-block;
  130.     margin-left: 10px;
  131.     padding: 20px;
  132.     font-size: 14px;
  133.     font-weight: 900;
  134.     width: 130px;
  135.     text-align:center;
  136.     height: 60px;
  137.     border-radius: 45px;
  138.     text-decoration: none;
  139.     color:white;
  140.     border: 1px solid white;
  141. }
  142. .article-propos
  143. {
  144.     display: flex;
  145.     align-items: center;
  146.     color: white;
  147.  
  148. }
  149. .article-acceuil.image-heros
  150. {
  151.  order: 1;
  152. }
  153. .article-acceuil.infos
  154. {
  155.    order: 2;
  156. }
  157. .article-propos.infos h1
  158. {
  159.     font-size: 90px;
  160.     margin-left: 40px;
  161.     margin-top: -11px;
  162.     margin-bottom: 0;
  163. }
  164. .article-propos.info h2
  165. {
  166.    font-size:100px;
  167.    margin-left: 40px;
  168.    line-height: 1.6;
  169. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement