Advertisement
wibowoow

style.css

Oct 9th, 2020
1,088
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1.  
  2.  
  3. #content{
  4.     float: left;
  5.     width: 75%;
  6. }
  7.  
  8. body {
  9.     font-family: sans-serif;
  10.     margin: 0;
  11.     padding: 0;
  12. }
  13.  
  14. .featured-image{
  15.     width: 100%;
  16.     max-height: 300px;
  17.     object-fit: cover;
  18.     object-position: center;
  19. }
  20.  
  21. .card{
  22.     box-shadow: rgb(66 61 61 / 75%) 0 28px 28px;
  23.     border-radius: 24px;
  24.     padding: 20px;
  25.     margin-top: 20px;
  26. }
  27.  
  28. .jumbotron {
  29.     font-size: 20px;
  30.     padding: 60px;
  31.     background-color: #00c8eb;
  32.     text-align: center;
  33.     color: white;
  34. }
  35.  
  36. nav li {
  37.     display: inline;
  38.     list-style-type: none;
  39.     margin-right: 20px;
  40. }
  41.  
  42. nav {
  43.     background-color: #00a2c6;
  44.     padding: 5px;
  45. }
  46.  
  47. nav a{
  48.     font-size: 18px;
  49.     font-weight: 400;
  50.     text-decoration: none;
  51.     color: white;
  52. }
  53.  
  54. body{
  55.     font-family: 'Quicksand', sans-serif;
  56.     margin: 0;
  57.     padding: 0;
  58. }
  59.  
  60. main{
  61.     padding: 20px;
  62. }
  63.  
  64. h2 {
  65.     color: blue;
  66. }
  67.  
  68. h3 {
  69.     color: red;
  70. }
  71.  
  72. .profil-img{
  73.     width: 200px;
  74. }
  75.  
  76.  
  77. footer {
  78.     padding: 20px;
  79.     color: whitesmoke;
  80.     background-color: aquamarine;
  81. }
  82.  
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement