forked from hvidsten/cssTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwoColumn.css
More file actions
50 lines (41 loc) · 715 Bytes
/
Copy pathtwoColumn.css
File metadata and controls
50 lines (41 loc) · 715 Bytes
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
@CHARSET "US-ASCII";
body {
font-family: Verdana, Arial, sans-serif;
margin: 0;
}
#wrapper {
background-color: #e8b9e8;
color: #000066;
}
#leftcolumn {
float: left;
width: 100px;
}
#rightcolumn {
margin-left: 100px;
background-color: #ffffff;
color: #000000;
}
#logo {
background-color: #eeeeee;
color: #cc66cc;
font-size: x-large;
border-bottom: 1px solid #000000;
padding: 10px;
}
.content {padding: 20px 20px 0 20px;}
#floatright {
margin: 10px;
float: right;
}
.footer {
font-size: x-small;
text-align: center;
clear: right;
padding-bottom: 20px;
}
.navBar {
text-decoration: none;
margin: 15px;
display: block;
}