-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbase.css
More file actions
67 lines (56 loc) · 1.01 KB
/
base.css
File metadata and controls
67 lines (56 loc) · 1.01 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
body {
font-family: Helvetica, Arial, sans-serif;
background-color: #ccff99; /*turquoise*/
}
/* comment */
#container {
width: 1000px;
margin: 0 auto; /*spacing outside border*/
background-color: #99ccff;
color: black; /*font color*/
overflow: hidden; /*stretches to include everything*/
margin-top: 80px;
border-radius: 7px; /*rounds corner of border*/
/* box-shadow: 0 0 30px #fff; */
}
.pictureContainer {
background: url("../");
}
.photoContainer {
}
#leftPanel ul {
list-style: none; /*removes bullets*/
line-height: 1.5em; /* increases line spacing */
}
#leftPanel{
width: 300px;
float: left;
padding: 15px; /*spacing inside border or container*/
}
#rightPanel{
width: 800px;
padding: 15px;
}
#anotherPanel{
width: 80%
;
}
h1{
margin-top: 0px;
}
h2{
color: blue;
}
a {
color: blue;
}
a:hover {
color: darkblue;
}
a:active{
color: brown;
}
img {
width: 85%; /* can be set in terms of pixels or % of its container */
border: 6px solid #0B243B; /*dark blue grey*/
}