-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.css
43 lines (43 loc) · 1.02 KB
/
homepage.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
div#main{
/*property 1: background-color*/
background-color:whitesmoke;
margin: 0;
padding: 20px;
}
body{
background-color: aquamarine;
width: 760px;
margin: 0 auto;
/*property 2: font*/
font:20px Brush Script MT;
}
h1{
color: aquamarine;
font-size: 60px;
letter-spacing: 8px;
/*property 3: text shadow*/
text-shadow: 2px 3px grey;
/*property 4: text-align*/
text-align: center;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h2{
color: aquamarine;
font-size: 20px;
text-shadow: 2px 3px grey;
text-align: center;
letter-spacing: 4px;
/*property 5: text-decoration*/
text-decoration:underline;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h3{
color: white;
font-size: 20px;
text-shadow: 2px 3px grey;
text-align: center;
letter-spacing: 4px;
/*property 5: text-decoration*/
text-decoration:underline;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}