Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. @charset 'UTF-8';
  2.  
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. }
  7.  
  8. header, footer, section, aside, nav, article {
  9. display: block;
  10. }
  11.  
  12. body {
  13. margin: 0 auto;
  14. width: 1000px;
  15. background: #002500;
  16. }
  17.  
  18. p{
  19. color: #CCFFCC;
  20. font-size:14px;
  21. padding-bottom:10px;
  22. }
  23.  
  24. h1{
  25. color:white;
  26. font-size:24px;
  27. padding-bottom:15px;
  28. }
  29.  
  30. header {
  31. height: 200px;
  32. margin-bottom:15px;
  33. background: #004C1A;
  34. border-radius:5px;
  35. }
  36.  
  37. nav{
  38. display: block;
  39. margin-bottom: 20px;
  40. }
  41.  
  42. nav ul{
  43. list-style: none;
  44. font-size:24px;
  45. line-height:36px;
  46. text-align:center;
  47. }
  48.  
  49. nav ul li {
  50. display: inline;
  51. padding:3px 6px;
  52. }
  53.  
  54. nav ul li a {
  55. display: block;
  56. float: left;
  57. width:125px;
  58. padding: 3px 6px;
  59. color: #6B47B2;
  60. text-decoration: none;
  61. font-weight: bold;
  62. }
  63.  
  64. nav ul li a:hover {
  65. background: #deff90;
  66. color: #485e0f;
  67. border-radius: 3px;
  68. padding: 3px 6px;
  69. margin; 0;
  70. text-decoration: none;
  71. }
  72. nav ul li.selected a{
  73. color: #002E00;
  74. background: #;
  75. padding: 3px 6px;
  76. b
  77. }
  78.  
  79. #content {
  80. width:1000px;
  81. height:620px;
  82. margin-bottom:25px;
  83. }
  84.  
  85. #content #left_column {
  86. float: left;
  87. width: 620px;
  88. height: 620px;
  89. margin-right: 30px;
  90. background: #004C1A;
  91. border-radius: 5px;
  92. padding: 0px 10px;
  93. }
  94.  
  95. #content aside {
  96. float: left;
  97. width: 330px;
  98. height: 620px;
  99. background-color: #004C1A;
  100. border-radius: 5px;
  101. }
  102.  
  103. #content aside img{
  104. margin: 10px;
  105. box-shadow: 3px 3px 7px #CCC;
  106. }
  107.  
  108. figcaption {
  109. text-align: center;
  110. color: #CCFFCC;
  111. font-size: 10px;
  112. }
  113.  
  114. footer {
  115. text-align: center;
  116. background: #004C1A;
  117. border-radius: 5px;
  118. }
  119.  
  120. p.special{
  121. padding-top:10px;
  122. line-height:12px;
  123. font-size:10px;
  124. color:#CCFFCC;
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement