summaryrefslogtreecommitdiff
path: root/docroot/custom_content/2col.css
diff options
context:
space:
mode:
Diffstat (limited to 'docroot/custom_content/2col.css')
-rwxr-xr-xdocroot/custom_content/2col.css68
1 files changed, 68 insertions, 0 deletions
diff --git a/docroot/custom_content/2col.css b/docroot/custom_content/2col.css
new file mode 100755
index 0000000..4e368c2
--- /dev/null
+++ b/docroot/custom_content/2col.css
@@ -0,0 +1,68 @@
1/*
2 * Material Experience - 2 Column Custom Content Base Styles
3 *
4 * EYEMG - Interactive Media Group
5 * Created by Mike Crute (mcrute@eyemg.com)
6 * Updated by Mike Crute (mcrute@eyemg.com) on 10/21/07
7 */
8
9body
10{
11 font-family: Verdana, sans-serif;
12 font-size: 11px;
13 margin: 10px;
14 padding: 0px;
15}
16
17ul#navigation
18{
19 margin: 0px;
20 padding: 0px;
21}
22
23ul#navigation li
24{
25 margin: 5px 30px 0px 0px;
26 list-style: none;
27 font-weight: bolder;
28 border: 1px solid white;
29}
30
31ul#navigation li a
32{
33 display: block;
34 text-decoration: none;
35 padding: 2px;
36 border: 3px solid black;
37}
38
39ul#navigation li ul li a
40{
41 margin: 0px -60px 0px -30px;
42 font-weight: normal;
43}
44
45.selected
46{
47 background: black;
48 color: white;
49 padding: 5px;
50}
51
52.narrowCol, .wideCol
53{
54 float: left;
55 height: 460px;
56 overflow: hidden;
57}
58
59.narrowCol
60{
61 width: 290px;
62 margin-right: 20px;
63}
64
65.wideCol
66{
67 width: 569px;
68}