forked from WBWeb/FullStackWebDevelopment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
43 lines (34 loc) · 641 Bytes
/
style1.css
File metadata and controls
43 lines (34 loc) · 641 Bytes
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
body {
background-color: antiquewhite;
text-align: center;
}
h1 {
font-size: 30px;
line-height: 2rem;
font-family: 'Baloo+Bhaijaan';
}
h2 {
font-size: 30px;
line-height: 2rem;
font-family: 'Josefin+Sans';
}
/*all the children are colored using descendants*/
ul li {
color: blueviolet;
}
/*using child selectors to color the css only one level deep*/
ul > li {
color: brown;
}
a {
text-decoration: none;
font-size: 20px;
color: yellowgreen;
word-spacing: 10px;
text-transform: uppercase;
}
.formatting {
font-size: 25px;
line-height: 2em;
color: darkblue;
}