forked from LaunchCodeEducation/HTML-Me-Something-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (57 loc) · 1.27 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
/* Write your CSS here! */
.headSeparator {
margin: 8px;
padding: 25px;
background-color: #9ab4e2;
text-align: center;
font-size: x-large;
font: bold;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.img-sm {
display: block;
margin: auto;
width: 25%;
border: 7px solid rgb(6, 4, 110);
padding: 10px;
text-align: center;
}
.img-md{
display: block;
margin: auto;
width: 30%;
border: 7px solid rgb(6, 4, 110);
padding: 10px;
text-align: center;
}
#mainHeading {
color: #f30000;
text-align: center;
font-size: xx-large;
text-decoration: underline;
font: bolder;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
p{
text-align: center;
font-size: x-large;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
body{
margin: 8px;
background-color: beige;
display: block;
}
#funParagraph{
color: #1e9232;
font-size: xx-large;
font: bold;
margin: 8px;
padding: 25px;
font-style: italic;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
a{
color: #f51cb4;
font-size: x-large
}