WordPress Theme Development 13 – Colour Stylesheet

Colour style sheet mainly to display the site with colours. Green and black will be the two main colours of the site. Hope you like it.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  1. /* *** Colour *** */
  2.  
  3. /* Begin Structure */
  4. body {
  5. background: #000000;
  6. }
  7.  
  8. div#wrapper {
  9. background: #ffffff;
  10. }
  11.  
  12. div#main {
  13. border: 3px solid #98c92a;
  14. }
  15.  
  16. div#container {
  17. background: #ffffff;
  18. }
  19.  
  20. div#content {
  21. background: #ffffff;
  22. }
  23.  
  24. div#sidebar {
  25. background: #ffffff;
  26. }
  27.  
  28. div#header, div#footer {
  29. background: #000000;
  30. color: #ffffff;
  31. }
  32. /* End Structure */
  33.  
  34. /* Begin Entry */
  35. a {
  36. color: #98c92a;
  37. }
  38. /* End Entry */
  39.  
  40. /* Begin NavMenu */
  41. div#navmenu {
  42. background: #98c92a;
  43. }
  44.  
  45. div#navmenu a {
  46. color: #ffffff;
  47. }
  48.  
  49. div#navmenu li.current_page_item a {
  50. color: #000000;
  51. }
  52. /* End NavMenu */

References

No Comments

No comments yet.

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">