diff options
Diffstat (limited to 'css/main.css')
-rw-r--r-- | css/main.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css index fa76b82..dfce5e2 100644 --- a/css/main.css +++ b/css/main.css @@ -30,6 +30,12 @@ body { font-family: 'EB Garamond', serif; font-weight: 15px; } +#main-nav a { + -webkit-transition: color .5s ease-out 0s; + -moz-transition: color .5s ease-out 0s; + -o-transition: color .5s ease-out 0s; + transition: color .5s ease-out 0s; +} #main-nav .navbar-default .navbar-nav > .active > a { background: #ffffff; font-weight: bold; @@ -77,6 +83,12 @@ body { color: #4d4d4d; border: 1px solid #4d4d4d; } +#speakers .thumbnail:hover { + -webkit-box-shadow: 0 0 7px #cccccc; + -moz-box-shadow: 0 0 7px #cccccc; + -o-box-shadow: 0 0 7px #cccccc; + box-shadow: 0 0 7px #cccccc; +} #footer-wrapper { width: 960px; margin: 0 auto 25px; @@ -118,3 +130,59 @@ body { #social img { width: 25px; } +#page-header { + height: 100px; + background: url("../images/jumbo_bg.jpg"); + background-attachment: fixed; + color: #ffffff; +} +#page-header #stage { + position: relative; + top: 25px; + padding: 10px; +} +#page-header #brand { + display: inline; + position: relative; + top: 3px; + left: 2px; +} +#page-header #current { + text-shadow: 0 0 2px #ffffff; +} +#page-content { + margin-top: 35px; +} +#page-content .col-md-9 { + min-height: 400px; +} +.nav-group li a { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; + color: #777777; +} +.nav-group li:first-child a { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.nav-group li:last-child a { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; +} +.nav-group li.active a { + background: #f5f5f5; +} +@media (min-width: 979px) { + #sidebar .nav-group.affix { + width:210px !important; + top: 10px; + } +} +#page-content h2 { + /* fix first h2*/ + margin-top: 0; +} |