Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');
- @media screen and (max-width: 1000px) {
- #content, aside{
- width: 100%;
- padding: 0;
- }
- }
- body{
- font-family: 'Quicksand',sans-serif;
- margin: 0;
- padding: 0;
- }
- h2, h3 {
- color: #e9b304 ;
- }
- footer{
- background-color: rgb(243, 138, 0);
- color: white;
- padding: 20px;
- text-align: center;
- font-weight: bold;
- }
- nav a{
- font-size: 18px;
- font-weight: 400;
- text-decoration: none;
- color: white;
- }
- nav a:hover{
- font-weight: bold;
- }
- .profil header{
- text-align: center;
- }
- .featured-image{
- width: 100%;
- max-height:300px;
- object-fit: cover;
- object-position: center;
- }
- .profil img{
- width: 200px;
- }
- .card{
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- border-radius: 5px;
- padding: 20px;
- margin-top: 20px;
- }
- .jumbotron{
- font-size: 20px;
- background-color: #fc931b;
- padding: 60px;
- text-align: center;
- color: white;
- }
- nav li{
- display: inline;
- list-style-type: none;
- margin-right:20px;
- }
- nav{
- background-color: #f8bd1b;
- padding: 5px;
- position: sticky;
- top:0;
- }
- main{
- padding:20px;
- overflow: auto;
- }
- #content{
- float:left;
- width: 75%;
- }
- aside{
- float:right;
- width: 25%;
- padding-left: 20px;
- display: inline-block;
- }
- * {
- box-sizing: border-box;
- }
- header{
- display: inline;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement