-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.css
More file actions
68 lines (56 loc) · 1.34 KB
/
sample.css
File metadata and controls
68 lines (56 loc) · 1.34 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
64
65
66
67
68
@charset "UTF-8";
/* Jessica's CSS Document.
NOTE: You can replace my name with your name - this part up here is a CSS comment and is not telling the web browser to change the appearance of your html page(s). You could also put other things here, like the colors you picked for a quick reference. I like to do that so I can easily copy and paste the hex numbers when I need them. For Example:
dark purple: #351431
ruby: #8B1E3F
pastel gray: #C9CEBD
ash gray: #B2BCAA
queen blue: #41658A
*/
/* the html element below is the "background" of your page */
html {
background-color: #C9CEBD;
}
body {
width: 761px;
margin: 1.5em auto; /* this + a defined width, centers the body content */
border-color: #303;
border-style: solid;
border-width: 10px;
padding: 50px;
background-color: #B2BCAA;
}
h1 {
text-align: center;
background-color: #3CF;
color: #351431;
}
h2 {
padding: 7px;
color: #351431;
}
h3 {
color: #351431;
}
/* IMPORTANT: this will put a border around ALL images - so the banner AND the image of you. You may want to remove the border or change it! */
img {
border-color: #8B1E3F;
border-style: dotted;
border-width: 5px;
}
/* The code below here alters your links */
a {
font-weight: bold;
}
a:hover {
text-decoration: none;
color: #8B1E3F;
}
.banner {
width: 400px;
height: auto;
}
.portrait {
height: 100px;
width:100px;
}