forked from FranciscoMaturana/Clase-de-git-mas-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
97 lines (80 loc) · 1.36 KB
/
styles.css
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Set default font family and size */
body {
font-family: Arial, sans-serif;
font-size: 16px;
}
/* Center main content */
h1, p, h2, ul, ol {
text-align: center;
}
/* Style headings */
h1 {
font-size: 36px;
margin-top: 50px;
}
h2 {
font-size: 24px;
margin-top: 30px;
}
/* Style links */
a {
color: #0000FF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Style lists */
ul, ol {
list-style: none;
padding: 0;
}
li {
margin-top: 10px;
}
/* Style steps */
ol li {
font-style: italic;
margin-top: 20px;
}
/* Style footer */
footer {
margin-top: 50px;
text-align: center;
font-size: 14px;
color: #666;
}
/* Add background colors */
body {
background-color: #F9F6F0;
}
h1, h2 {
background-color: #F5B7B1;
padding: 10px;
border-radius: 5px;
color: #FFF;
}
ul {
background-color: #D5F5E3;
padding: 20px;
border-radius: 5px;
}
li:hover {
background-color: #AED6F1;
border-radius: 5px;
}
ol {
background-color: #FDEBD0;
padding: 20px;
border-radius: 5px;
}
ol li {
background-color: #FAD7A0;
padding: 10px;
border-radius: 5px;
}
footer {
background-color: #EBDEF0;
padding: 10px;
border-radius: 5px;
}