Advertisement
21ani

styleweb

Jan 19th, 2021
1,198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.56 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');
  2. @media screen and (max-width: 1000px) {
  3.     #content, aside{
  4.         width: 100%;
  5.         padding: 0;
  6.        
  7.        
  8.     }
  9.  }
  10.  
  11.  
  12.  
  13.  
  14.  
  15. body{
  16.     font-family: 'Quicksand',sans-serif;
  17.     margin: 0;
  18.     padding: 0;
  19. }
  20.  
  21. h2, h3 {
  22.     color: #e9b304 ;
  23. }
  24.  
  25. footer{
  26.     background-color: rgb(243, 138, 0);
  27.     color: white;
  28.     padding: 20px;
  29.     text-align: center;
  30.     font-weight: bold;
  31. }
  32.  
  33. nav a{
  34.     font-size: 18px;
  35.     font-weight: 400;
  36.     text-decoration: none;
  37.     color: white;
  38. }
  39.  
  40. nav a:hover{
  41.     font-weight: bold;
  42. }
  43.  
  44. .profil header{
  45.     text-align: center;
  46. }
  47.  
  48. .featured-image{
  49.     width: 100%;
  50.     max-height:300px;
  51.     object-fit: cover;
  52.     object-position: center;
  53. }
  54.  
  55. .profil img{
  56.     width: 200px;
  57. }
  58.  
  59. .card{
  60.     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  61.     border-radius: 5px;
  62.     padding: 20px;
  63.     margin-top: 20px;
  64. }
  65.  
  66. .jumbotron{
  67.     font-size: 20px;
  68.     background-color: #fc931b;
  69.     padding: 60px;
  70.     text-align: center;
  71.     color: white;
  72. }
  73.  
  74. nav li{
  75.     display: inline;
  76.     list-style-type: none;
  77.     margin-right:20px;
  78. }
  79.  
  80. nav{
  81.     background-color: #f8bd1b;
  82.     padding: 5px;
  83.     position: sticky;
  84.     top:0;
  85. }
  86.  
  87. main{
  88.     padding:20px;
  89.     overflow: auto;
  90. }
  91.  
  92. #content{
  93.     float:left;
  94.     width: 75%;
  95. }
  96.  
  97. aside{
  98.     float:right;
  99.     width: 25%;
  100.     padding-left: 20px;
  101.     display: inline-block;
  102. }
  103.  
  104. * {
  105.     box-sizing: border-box;
  106. }
  107.  
  108. header{
  109.    
  110.     display: inline;
  111.  
  112. }
  113.  
  114.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement