raptor
Version:
RaptorJS provides an AMD module loader that works in Node, Rhino and the web browser. It also includes various sub-modules to support building optimized web applications.
51 lines (45 loc) • 983 B
CSS
.header {
background-color: #50A8DC;
background-image: -moz-linear-gradient(center top , #61B0DF, #369BD7);
background-repeat: repeat-x;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25), 0 -1px 0 rgba(0, 0, 0, 0.1) inset;
min-height: 40px;
line-height: 40px;
vertical-align: middle;
padding-left: 20px;
padding-right: 20px;
color: white;
}
.header > H1 {
margin: 0;
font-size: 20px;
}
.header > H1 > A {
text-decoration: none;
color: white;
}
.header > H1 > A > .title {
color: white;
font-size: 20px;
text-shadow: 1px 1px 4px #000000;
}
.header > H1 > .version {
font-size: 16px;
margin-left: 5px;
}
.header > H1 > .powered-by {
float: right;
font-size: 16px;
line-height: 40px;
margin-right: 15px;
vertical-align: middle;
color: #F5F5F5;
}
.powered-by A {
color: #033C73;
text-decoration: none;
}
.powered-by a:hover {
color: #2071A1;
text-decoration: underline;
}