diff options
Diffstat (limited to 'global/css/style.css')
| -rwxr-xr-x | global/css/style.css | 217 |
1 files changed, 217 insertions, 0 deletions
diff --git a/global/css/style.css b/global/css/style.css new file mode 100755 index 0000000..f6007df --- /dev/null +++ b/global/css/style.css @@ -0,0 +1,217 @@ +html { + height: 100%; +} + +/* Remove Below */ + +#header .logo img { + left:-25px; + top:-3px; +} + +#header { + height:81px; +} +#main { + background-position-y: -10px +} +.topsearch .nav { + position:relative; + top:9px; +} + +.category_index { float: left; margin: 0.25em; width:19em; } +.category_index h2 { background: #ddd; text-align: center; padding: 0.25em; margin-bottom: 0.5em; } +.category_index dt, .category_index dd { margin-right: 0.5em; } +.category_index dt { margin-left: 0.5em !important; } +.category_index dd { margin-left: 1.5em !important; } + + +/*********************/ +/* Sidebar */ +/*********************/ + +#guides .guide .sidebar h3 { + padding: 4px; + margin: .2em 0; +} +#guides .guide .sidebar h3:focus { outline: none; } + +.sidebar dl { padding: 0 0.5em 0.5em 0.5em; } +.sidebar dt { + font-weight: bold; + margin-top: 0.5em; +} + +.ui-icon { + display: inline-block; + width: 16px; + height: 16px; + background-color: white; + background-position: -2px 2px; + background-repeat: no-repeat; +} +.ui-icon-triangle-expand { background-image: url(/images/expand.png); } +.ui-icon-triangle-collapse { background-image: url(/images/collapse.png); } + +/****************************/ +/* Forking ribbon */ +/****************************/ + +@font-face { + font-family: Collegiate; + src: url("/Collegiate.ttf"); +} + +.myribbon { + position: absolute; + top: 0; + overflow: hidden; + height: 12em; + right: 0; +} + +.myribbon a, myribbon a:hover { text-decoration: none; } + +.myribbon a { + /* Font */ + font-family: Collegiate, sans-serif; + letter-spacing: -.1px; + opacity: 0.95; + font-size: 125%; + line-height: 1.35em; + + /* Position */ + display: block; + position: relative; + top: 2.5em; + right: -2.6em; + padding: 0.25em 0; + + /* Sit and spin */ + -moz-transform: rotate(45deg); + -webkit-transform: rotate(45deg); + + /* Defaults friendly for white pages. */ + -moz-box-shadow: 0 0 13px #888; + -webkit-box-shadow: 0 0 13px #888; + color: #FFF; + text-shadow: 0 0 0.5em #444; + + /* Culla */ + background-color: #9a0000; + background: -webkit-gradient(linear, left bottom, left top, from(#9a0000), to(#a90000)); +} + +.myribbon a span { + padding: 0.1em 3em; + border: 1px solid #bf6060; +} + +/****************************/ +/* Bootcamp */ +/****************************/ +.short-bottom-marg { + margin-bottom: 5px; +} +p.next-step strong, .next-steps { + color: #666666; +} +.next-steps { + font-weight: bold; +} +.next-steps a { + background-image: url('/images/bootcamp/next_step_arrow.gif'); + background-repeat: no-repeat; + background-position: right 50%; + padding-right: 15px; +} +.next-steps a:hover { + padding-right: 20px; + text-decoration: none; +} +.intro { + color: #868686; +} + +h2 span { + color: #666666; +} + +.founders { + overflow: hidden; + margin: 0px; +} +.founder { + background:#f5f5f5; + filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fcfcfc',endColorstr='#ececec'); + background:-webkit-gradient(linear,0% 0,0% 100%,from(#fcfcfc),to(#e8e8e8)); + background:-moz-linear-gradient(270deg,#fcfcfc,#ececec);border-color:#eee; + border:1px solid #e9e9e9; + border-bottom-color:#f5f5f5; + -webkit-border-radius:5px; + -moz-border-radius:5px; + border-radius:5px; + -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.2); + -moz-box-shadow:0 1px 1px rgba(0,0,0,0.2); + box-shadow:0 1px 1px rgba(0,0,0,0.2); + display: block; + position: relative; + width: 250px; + padding: 5px; + overflow: hidden; + margin: 0px 5px 5px 0px; + float: left; + list-style-type: none; +} + +.founder:hover { + text-decoration: none; + background:#e5e5e5; + filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ececec',endColorstr='#dcdcdc'); + background:-webkit-gradient(linear,0% 0,0% 100%,from(#ececec),to(#d8d8d8)); + background:-moz-linear-gradient(270deg,#ececec,#dcdcdc);border-color:#ddd; +} + +.founder img { + float: left; + position: relative; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + border:1px solid #e9e9e9; + margin-right: 1em; +} +.founder h4 { + position: relative; + font-size: 1.3em; + color: #000; + margin: .3em 0px 0px; +} +.founder p { + position: relative; + font-weight: bold; + margin:0px !important; + color: #666666; + margin: 0px; +} + +.step-title { + font-weight: bold; + display: inline-block; + margin-top: 1em; +} + +.step-title span { + font-weight: normal; + font-style: oblique; + color: #666666; +} + +img.bootcamp { + display: block; +} + +img.top-margin { + margin-top: 1em !important; +} |
