miguelgargallo commited on
Commit
1d066f5
1 Parent(s): 6ff2807
Files changed (1) hide show
  1. css.pylar +34 -0
css.pylar ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ /* Set the background color to a light brown */
3
+ background-color: #F5D6C1;
4
+ }
5
+
6
+ h1, h2, h3 {
7
+ /* Set the text color to a darker brown */
8
+ color: #A35A2F;
9
+ }
10
+
11
+ p {
12
+ /* Set the text color to a sepia tone */
13
+ color: #704214;
14
+ }
15
+
16
+ a {
17
+ /* Set the link color to a dark brown */
18
+ color: #5D3217;
19
+ }
20
+
21
+ a:hover {
22
+ /* Set the link color on hover to a lighter brown */
23
+ color: #965A2F;
24
+ }
25
+
26
+ li {
27
+ /* Set the list item color to a darker brown */
28
+ color: #A35A2F;
29
+ }
30
+
31
+ ol, ul {
32
+ /* Set the list item color to a sepia tone */
33
+ color: #704214;
34
+ }