Advertisement
Guest User

color kitchen

a guest
Oct 3rd, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.31 KB | None | 0 0
  1. body{
  2.     background-image:  url(pr02_images/colorful_dots_on_black.jpg);
  3.     font-family: Helvetica;
  4. }
  5. nav{
  6.     background: white;
  7.     float: left;
  8.     margin-top: 20px;
  9.     margin-bottom: 20px;
  10.     padding: 20px;
  11.     border-radius: 25px;
  12.     width: 320px;
  13.     height: 320px;
  14. }
  15. nav header{
  16.     text-decoration: underline;
  17.     font-weight: 550;
  18.     font-size: 35px;
  19.     text-align: left;
  20. }
  21. li{
  22.     padding-top: 20px;
  23.     font-family: Helvetica;
  24.     font-size: 20px;
  25. }
  26. ul{
  27.     list-style-image: url(pr02_images/checkedSign.png);
  28. }
  29. nav a:link {
  30.     text-decoration: none;
  31.     color: black;
  32.  
  33. }
  34. a:visited {
  35.     color: #808CA9;
  36. }
  37.  
  38. a:link{
  39.     color:black;
  40. }
  41.  
  42. article{
  43.     float: right;
  44.     background: white;
  45.     width: 1000px;
  46.     margin-bottom: 20px;
  47.     padding: 10px;
  48.     border-radius: 25px;
  49.  
  50. }
  51.  
  52. section{
  53.     margin-top: 20px;
  54.     margin-bottom: 20px;
  55. }
  56.  
  57.  
  58. section header{
  59.     text-align: left;
  60.     font-weight: 550;
  61.     font-size: 35px;
  62.     border-radius:10px;
  63.     padding: 10px;
  64. }
  65. section div{
  66.     padding: 10px
  67. }
  68. section footer{
  69.     padding-left: 10px;
  70.     font-style: italic
  71. }
  72. #webColors{
  73.     background: #FF0000;
  74.     color: white;
  75. }
  76. #webSafeColors{
  77.     background: #FFA500;
  78.     color: black;
  79. }
  80. #RGB{
  81.      background: #FFFF00;
  82.      color: black;
  83.  }
  84. #RGBA{
  85.     background: #008000;
  86.     color: white;
  87. }
  88. #\#HSLHSV{
  89.     background: #0000FF;
  90.     color: white;
  91. }
  92. #\#lorem{
  93.     background: #800080;
  94.     color: white;
  95. }
  96. article span :nth-child(1){
  97.     color: #00008B;
  98. }
  99. section article span:nth-child(2){
  100.     color: #00008B;
  101. }
  102.  
  103. body{
  104.     background-image:  url(pr02_images/colorful_dots_on_black.jpg);
  105.     font-family: Helvetica;
  106. }
  107. nav{
  108.     background: white;
  109.     float: left;
  110.     margin-top: 20px;
  111.     margin-bottom: 20px;
  112.     padding: 20px;
  113.     border-radius: 25px;
  114.     width: 320px;
  115.     height: 320px;
  116. }
  117. nav header{
  118.     text-decoration: underline;
  119.     font-weight: 550;
  120.     font-size: 35px;
  121.     text-align: left;
  122. }
  123. li{
  124.     padding-top: 20px;
  125.     font-family: Helvetica;
  126.     font-size: 20px;
  127. }
  128. ul{
  129.     list-style-image: url(pr02_images/checkedSign.png);
  130. }
  131. nav a:link {
  132.     text-decoration: none;
  133.     color: black;
  134.  
  135. }
  136. a:visited {
  137.     color: #808CA9;
  138. }
  139.  
  140. a:link{
  141.     color:black;
  142. }
  143.  
  144. article{
  145.     float: right;
  146.     background: white;
  147.     width: 1000px;
  148.     margin-bottom: 20px;
  149.     padding: 10px;
  150.     border-radius: 25px;
  151.  
  152. }
  153.  
  154. section{
  155.     margin-top: 20px;
  156.     margin-bottom: 20px;
  157. }
  158.  
  159.  
  160. section header{
  161.     text-align: left;
  162.     font-weight: 550;
  163.     font-size: 35px;
  164.     border-radius:10px;
  165.     padding: 10px;
  166. }
  167. section div{
  168.     padding: 10px
  169. }
  170. section footer{
  171.     padding-left: 10px;
  172.     font-style: italic
  173. }
  174. #webColors{
  175.     background: #FF0000;
  176.     color: white;
  177. }
  178. #webSafeColors{
  179.     background: #FFA500;
  180.     color: black;
  181. }
  182. #RGB{
  183.     background: #FFFF00;
  184.     color: black;
  185. }
  186. #RGBA{
  187.     background: #008000;
  188.     color: white;
  189. }
  190. #\#HSLHSV{
  191.     background: #0000FF;
  192.     color: white;
  193. }
  194. #\#lorem{
  195.     background: #800080;
  196.     color: white;
  197. }
  198. section article span:nth-child(2){
  199.     color: #00008B;
  200. }
  201.  
  202.  
  203.  
  204.  
  205.  
  206. section article div:first-line {
  207.     font-style: italic;
  208. }
  209. section article div:first-letter {
  210.     font-size: 18px;
  211. }
  212. section article span:first-line {
  213.     font-style: italic;
  214. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement