Advertisement
wildanfuady

Project 2 CSS

Jan 11th, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. body{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. /* h1{
  6. color: blue !important;
  7. font-size: 50px;
  8. }
  9. p{
  10. color: grey;
  11. } */
  12.  
  13. /* th, td{
  14. border: 1px solid #000;
  15. } */
  16. .header{
  17. background: aqua;
  18. height: 100px;
  19. text-align: center;
  20. }
  21. .sidebar{
  22. background: blue;
  23. height: 400px;
  24. width: 300px;
  25. float:left;
  26. }
  27. .sidebar ul{
  28. list-style: none;
  29. padding: 20px;
  30. }
  31. .sidebar ul li a{
  32. display: block;
  33. color: #fff;
  34. margin: 5px;
  35. padding: 10px;
  36. background: purple;
  37. font-size: 20px;
  38. margin-bottom: 10px;
  39. text-align:center;
  40. text-decoration: none;
  41. }
  42. .sidebar ul li a:hover{
  43. background: white;
  44. color: purple;
  45. }
  46. .content{
  47. background: orange;
  48. height: 380px;
  49. overflow: hidden;
  50. padding-top: 20px;
  51. padding-left: 20px;
  52. }
  53. .content h4{
  54. text-align: center;
  55. }
  56. .footer{
  57. height: 200px;
  58. /* text-align: center; */
  59. background: black;
  60. }
  61. .footer-left{
  62. float: left;
  63. width: 48%;
  64. padding: 20px;
  65. }
  66. .footer-left p, .footer-left i{
  67. color: grey;;
  68. }
  69. .footer-left i{
  70. font-size: 20px;
  71. }
  72. .footer-left h4{
  73. color: grey;
  74. }
  75. .footer-right{
  76. width: 40%;
  77. padding: 20px;
  78. overflow: hidden;
  79. text-align: right;
  80. }
  81. .footer-right p{
  82. color: grey;;
  83. }
  84. .footer-right input[type="text"]{
  85. padding: 10px;
  86. float: left;
  87. width: 70%;
  88. }
  89. .footer-right button{
  90. padding: 12px;
  91. width: 25.5%;
  92. border: none;
  93. background: rgb(74, 142, 187);
  94. color: #fff;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement