-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (51 loc) · 1.28 KB
/
styles.css
File metadata and controls
63 lines (51 loc) · 1.28 KB
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
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 15px;
color:black;
background-color:blanchedalmond;
}
li {
font-size: 14px;
text-decoration: none;
font-style: italic;
font-weight: normal;
}
a {
color:rgb(0, 162, 255);
text-decoration: none;
}
a:hover {
text-decoration: underline;
color:blueviolet;
}
.resumeListHeading {
font-weight: bold;
font-style: normal;
}
.underline {text-decoration: underline; font-weight: normal; font-style: normal;}
.italics {font-style: italic; text-decoration: none; font-weight: normal;}
/*Note: If you want to do italics and underline, do italics first, then underline.*/
.bold {font-weight: bold; font-style: normal; text-decoration: none;}
.boldUnderline {text-decoration: underline; font-weight: bold; font-style: normal;}
.justify {text-align: justify;}
.homebg {
background-image: url('images/simpsons_background.jpg');
background-position: bottom-left;
background-repeat: repeat;
}
/*The following styles were only for practice, to demonstrate the box model*/
.box1 {
border: solid 1px green;
border-bottom: dashed 1 px black;
}
.box2 {
padding: 5px;
}
.box3 {
margin: 50px;
}
.box4 {
padding-left: 10px;
margin: 100px;
border-right: solid 5px aqua;
}