diff options
| author | 2015-05-30 22:41:54 -0400 | |
|---|---|---|
| committer | 2015-05-30 22:41:54 -0400 | |
| commit | 96d399fb52339551d0538ff7f0e629239df54883 (patch) | |
| tree | 9b494dd7c7c46a6a64355c29e8599877fa210fbf /themes/custom/assets/css/custom.css | |
Initial commit
Diffstat (limited to 'themes/custom/assets/css/custom.css')
| -rw-r--r-- | themes/custom/assets/css/custom.css | 161 |
1 files changed, 161 insertions, 0 deletions
diff --git a/themes/custom/assets/css/custom.css b/themes/custom/assets/css/custom.css new file mode 100644 index 0000000..08b5951 --- /dev/null +++ b/themes/custom/assets/css/custom.css @@ -0,0 +1,161 @@ +/*! + * Custom CSS for Unit 193 + */ + +.breadcrumbs + h1 { + font-size: 31.5px; +} + +.breadcrumbs + h1 { + padding-top: 40px; +} + +.breadcrumb { + margin: 20px 0; +} + +img { + width: auto; + max-width: none; +} + +img#logo { + max-height: 50px; +} + +.footerbox { + margin: 15px 0; +} + +code, pre { + color: inherit; + background-color: inherit; +} + +/* switch blue to red */ + +a { + color: #c00; +} + +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus, +.dropdown-submenu:hover > a, +.dropdown-submenu:focus > a { + background-color: #c00; + background-image: -moz-linear-gradient(top, #c00, #020202); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c00), to(#020202)); + background-image: -webkit-linear-gradient(top, #c00, #020202); + background-image: -o-linear-gradient(top, #c00, #020202); + background-image: linear-gradient(to bottom, #c00, #020202); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc00', endColorstr='#ff020202', GradientType=0); +} + +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + background-color: #c00; + background-image: -moz-linear-gradient(top, #c00, #020202); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c00), to(#020202)); + background-image: -webkit-linear-gradient(top, #c00, #020202); + background-image: -o-linear-gradient(top, #c00, #020202); + background-image: linear-gradient(to bottom, #c00, #020202); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc00', endColorstr='#ff020202', GradientType=0); +} + +.btn-link { + color: #c00; +} + +.nav-list > .active > a, +.nav-list > .active > a:hover, +.nav-list > .active > a:focus { + background-color: #c00; +} + +.nav-pills > .active > a, +.nav-pills > .active > a:hover, +.nav-pills > .active > a:focus { + background-color: #c00; +} + +.nav .dropdown-toggle .caret { + border-top-color: #c00; + border-bottom-color: #c00; +} + +.pagination ul > li > a:hover, +.pagination ul > li > a:focus, +.pagination ul > .active > a, +.pagination ul > .active > span { + background-color: #c00; +} + +a.thumbnail:hover, +a.thumbnail:focus { + border-color: #c00; +} + +.navbar .nav > li > a:hover, +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover { + border-bottom: 1px solid #c00; +} + +@media (max-width: 979px) { + .navbar .nav-collapse .nav li > a:hover { + background-color: #c00; + } + .navbar .nav-collapse .nav .active > a { + background-color: #c00; + } + .navbar .nav-collapse .dropdown-menu a:hover { + background-color: #c00; + } +} + +div.subnav .nav > li > a:hover, +div.subnav .nav > li.active > a, +div.subnav .nav > li.active > a:hover, +div.subnav .nav > li:first-child > a:hover { + border-bottom: 1px solid #c00; +} + +.nav-tabs li > a:hover, +.nav-tabs li.active > a, +.nav-tabs li.active > a:hover { + background-color: #c00; +} + +.nav-pills li > a:hover { + background-color: #c00; +} + +.nav-list li > a:hover { + background-color: #c00; +} + +.nav-stacked li > a:hover, +.nav-stacked li.active > a { + background-color: #c00; +} + +.breadcrumb li > a { + color: #c00; +} + +.pager li > a:hover, +.pager li > span:hover { + background-color: #c00; +} + +.table tbody tr.info td { + background-color: #c00; +} + +@media (max-width: 768px) { + .subnav .nav > li + li > a:hover, + .subnav .nav > li:first-child > a:hover { + background-color: #c00; + } +} |
