diff --git trunk/buddypress.org/public_html/wp-content/themes/bporg-developer/css/style.css trunk/buddypress.org/public_html/wp-content/themes/bporg-developer/css/style.css
index 222b242..2aa27f2 100644
|
|
html { |
9 | 9 | width: 100%; |
10 | 10 | z-index: 99; |
11 | 11 | font-size: 13px; |
| 12 | position: fixed; |
| 13 | top: 0; |
12 | 14 | } |
13 | 15 | |
14 | 16 | body.admin-bar header#masthead { |
15 | 17 | margin-top: 124px; |
16 | 18 | } |
17 | 19 | |
| 20 | #wp-toolbar, #header-inner { |
| 21 | margin: 0 auto; |
| 22 | } |
| 23 | |
| 24 | #header-inner { |
| 25 | width: 100%; |
| 26 | height: 80px; |
| 27 | padding: 0; |
| 28 | } |
| 29 | |
| 30 | #wp-admin-bar-my-account img.avatar { |
| 31 | border-radius: 50%; |
| 32 | } |
| 33 | |
18 | 34 | #header #network-title { |
19 | 35 | text-indent: -9999px; |
20 | 36 | width: 265px; |
… |
… |
body .meta a, |
336 | 352 | color: #fff; |
337 | 353 | } |
338 | 354 | } |
| 355 | |
| 356 | @media screen and (min-width: 960px) { |
| 357 | #header-inner, #footer, #wp-toolbar { |
| 358 | max-width: 960px; |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | @media screen and (max-width: 600px) { |
| 363 | #wpadminbar { |
| 364 | position: fixed; |
| 365 | } |
| 366 | } |
diff --git trunk/buddypress.org/public_html/wp-content/themes/bporg-developer/functions.php trunk/buddypress.org/public_html/wp-content/themes/bporg-developer/functions.php
index db2ecab..6024cf4 100644
|
|
defined( 'ABSPATH' ) || exit; |
16 | 16 | * @since 1.0.0 |
17 | 17 | */ |
18 | 18 | function bporg_developer_enqueue_styles() { |
19 | | wp_enqueue_style( 'bb-base', content_url( 'themes' ) . '/bb-base/style.css' ); |
20 | 19 | wp_enqueue_style( 'wporg-developer', get_template_directory_uri() . '/style.css' ); |
21 | 20 | wp_enqueue_style( 'bporg-developer-main', |
22 | 21 | get_stylesheet_directory_uri() . '/css/style.css', |