Advertisement
naveilhan

Untitled

Feb 18th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. *{
  2. color: grey;
  3. font-family: 'verdana',cursive;
  4. }
  5.  
  6. body {
  7. background-color: white;
  8.  
  9. }
  10.  
  11. nav{
  12. position: absolute;
  13. height: 45px;
  14. width: 100%;
  15. background-color: #444;
  16. }
  17.  
  18. li {
  19. position: relative;
  20. height: 25px;
  21. list-style-type: none;
  22. align-content: center;
  23. display: inline;
  24. padding: 10px;
  25. background-color: #444;
  26. }
  27.  
  28. li:hover{
  29. background-color: #eee;
  30. }
  31.  
  32. a{
  33. color: #999;
  34. text-decoration: none;
  35. }
  36.  
  37. section{
  38. width: 100%;
  39. text-align: center;
  40. }
  41.  
  42. section h2{
  43. font-size: 20px;
  44. text-align: center;
  45. }
  46.  
  47. article {
  48. margin-bottom: 40px;
  49. text-align: center;
  50. color: white;
  51. width: 30%;
  52. background-color: #eee;
  53. margin: 5px;
  54. }
  55.  
  56. em {
  57. font-size: 14px;
  58. }
  59.  
  60. .articles{
  61. display: inline-block;
  62. margin-bottom: 40px;
  63. height: 250px;
  64. }
  65.  
  66. .carousel {
  67. align-content: center;
  68. height: 250px;
  69. width: 100%;
  70. background-color: #eee;
  71. }
  72.  
  73. form h2{
  74. color: grey;
  75. text-align: left;
  76. }
  77.  
  78. input, textarea{
  79. display: block;
  80. width: 98%;
  81. margin-top: 15px;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement