From BlenderWiki

Jump to: navigation, search
Note: This is an archived version of the Blender Developer Wiki. The current and active wiki is available on wiki.blender.org.

Note: After saving, you may have to bypass your browser's cache to see the changes. Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh); Konqueror: click Reload or press F5; Opera: clear the cache in Tools → Preferences; Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

/* <pre> */
 
 
/* make usage of full screen width, if possible */
#container {
  min-width: 80%;
}
 
 
/* configuration for top menu */
 
#column-one {
  position: absolute;
  height: 15px;
  width: 100%;
  outline: 0px dashed red;
  left: 0px;
  top: 0px;
  background-color: #075189;
  padding: 2px;
  z-index: 3;
  margin: 0px;
}
 
#column-one > .portlet {
  margin: 0px;
  width: auto;
}
 
#column-one > .portlet li {
  display: block;
  padding-left: 5px;
  padding-right: 5px;
}
 
#column-one > .portlet li:hover {
  background-color: #053c66;
}
 
 
#column-one > .portlet h5 {
  color: #fff;
  text-transform: capitalize;
}
 
#column-one > .portlet ul {
  margin: 0px;
  padding: 0px;
}
 
#column-one > .portlet > div {
  display: none;
  padding: 0px;
  margin: 0px;
  background-color: #7191ac;
  filter:alpha(opacity=90);
  opacity: 0.9;
}
 
#column-one > .portlet:hover > div {
 display: block;
}
 
#column-one > .portlet a {
 display: block;
 color: #fff;
}
 
#column-one > .portlet a:hover {
  text-decoration: none;
}
 
 
#column-one > .portlet a:visited {
 color: #eee;
}
 
 
/* </pre> */