Index: src/bp-templates/bp-legacy/css/twentyfifteen.css
===================================================================
--- src/bp-templates/bp-legacy/css/twentyfifteen.css	(revision 0)
+++ src/bp-templates/bp-legacy/css/twentyfifteen.css	(revision 0)
@@ -0,0 +1,111 @@
+/*--------------------------------------------------------------
+
+This is the BuddyPress Companion stylesheet for 
+the WordPress Twentyfifteen theme.
+
+This sheet supports the primary BuddyPress styles in buddypress.css
+
+The Rulesets shadow the BP default stylesheet sectioning 
+to maintain uniformity.
+
+----------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 - Navigation
+	1.1 - Nav - General/Common tabs, links
+	1.2 - Pagination
+2.0 - Images
+3.0 - BuddyPress
+	3.1 - Activity
+		3.1.1 - Activity Listing
+		3.1.2 - Activity Comments
+	3.2 - Toolbar
+	3.3 - Directories - Members, Groups, Blogs, Forums
+	3.4 - Error / Success Messages
+	3.5 - Forms
+	3.6 - Ajax Loading
+	3.7 - Topics and Tables - Forums and General
+	3.8 - Headers, Lists and Tabs - Activity, Groups, Blogs, Forums
+	3.9 - Private Messaging Threads
+	3.10 - Extended Profiles
+	3.11 - Widgets
+--------------------------------------------------------------*/
+/*--------------------------------------------------------------
+1 - Navigation
+--------------------------------------------------------------*/
+/*--------------------------------------------------------------
+1.1 - Nav - General/Common tabs, links
+--------------------------------------------------------------*/
+/* line 49, twentyfifteen.scss */
+.buddypress #buddypress .item-list-tabs a,
+.buddypress #buddypress .activity-header a,
+.buddypress #buddypress .activity-inner a,
+.buddypress #buddypress .activity-comments a,
+.buddypress #buddypress .load-more a {
+  border-bottom: 0;
+}
+/* line 53, twentyfifteen.scss */
+.buddypress #buddypress .pagination-links a,
+.buddypress #buddypress .pagination-links span {
+  border-bottom: 0;
+}
+
+/*--------------------------------------------------------------
+1.2 - Pagination
+--------------------------------------------------------------*/
+/* line 61, twentyfifteen.scss */
+#buddypress div.pagination {
+  box-shadow: none;
+}
+/* line 63, twentyfifteen.scss */
+#buddypress div.pagination .pagination-links {
+  margin-right: 0;
+}
+/* line 66, twentyfifteen.scss */
+#buddypress div.pagination .pagination-links span,
+#buddypress div.pagination .pagination-links a {
+  height: auto;
+  line-height: 1;
+  padding: 5px;
+}
+/* line 72, twentyfifteen.scss */
+#buddypress div.pagination .pagination-links .prev,
+#buddypress div.pagination .pagination-links .next {
+  background-color: transparent;
+  color: inherit;
+  overflow: visible;
+  width: auto;
+}
+/* line 77, twentyfifteen.scss */
+#buddypress div.pagination .pagination-links .prev:before,
+#buddypress div.pagination .pagination-links .next:before {
+  display: none;
+}
+/* line 79, twentyfifteen.scss */
+#buddypress div.pagination .pagination-links .prev {
+  position: static;
+  left: auto;
+}
+/* line 83, twentyfifteen.scss */
+#buddypress div.pagination .pagination-links .next {
+  position: static;
+  right: auto;
+}
+
+/*--------------------------------------------------------------
+3.0 - BuddyPress
+--------------------------------------------------------------*/
+/*--------------------------------------------------------------
+3.1 - Activity
+--------------------------------------------------------------*/
+/*--------------------------------------------------------------
+3.1.1 - Activity Listing
+--------------------------------------------------------------*/
+/* line 105, twentyfifteen.scss */
+#buddypress .activity-list .activity-content {
+  margin-top: -12px;
+}
+/* line 108, twentyfifteen.scss */
+#buddypress .activity-list .activity-content .activity-header img.avatar {
+  display: inline-block;
+}
Index: src/bp-templates/bp-legacy/css/twentyfifteen.scss
===================================================================
--- src/bp-templates/bp-legacy/css/twentyfifteen.scss	(revision 0)
+++ src/bp-templates/bp-legacy/css/twentyfifteen.scss	(revision 0)
@@ -0,0 +1,114 @@
+/*--------------------------------------------------------------
+
+This is the BuddyPress Companion stylesheet for 
+the WordPress Twentyfifteen theme.
+
+This sheet supports the primary BuddyPress styles in buddypress.css
+
+The Rulesets shadow the BP default stylesheet sectioning 
+to maintain uniformity.
+
+----------------------------------------------------------------
+>>> TABLE OF CONTENTS:
+----------------------------------------------------------------
+1.0 - Navigation
+	1.1 - Nav - General/Common tabs, links
+	1.2 - Pagination
+2.0 - Images
+3.0 - BuddyPress
+	3.1 - Activity
+		3.1.1 - Activity Listing
+		3.1.2 - Activity Comments
+	3.2 - Toolbar
+	3.3 - Directories - Members, Groups, Blogs, Forums
+	3.4 - Error / Success Messages
+	3.5 - Forms
+	3.6 - Ajax Loading
+	3.7 - Topics and Tables - Forums and General
+	3.8 - Headers, Lists and Tabs - Activity, Groups, Blogs, Forums
+	3.9 - Private Messaging Threads
+	3.10 - Extended Profiles
+	3.11 - Widgets
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1 - Navigation
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+1.1 - Nav - General/Common tabs, links
+--------------------------------------------------------------*/
+
+// Remove 2015 border bottom on BP links/spans
+.buddypress #buddypress {
+	.item-list-tabs, 
+	.activity-header, 
+	.activity-inner, 
+	.activity-comments, 
+	.load-more { 
+		a { border-bottom: 0; }
+	}	
+	.pagination-links {
+		a, 
+		span { border-bottom: 0; }
+	}
+} // close .buddypress #buddypress
+/*--------------------------------------------------------------
+1.2 - Pagination
+--------------------------------------------------------------*/
+
+#buddypress {
+ div.pagination {
+ 	box-shadow: none;
+  .pagination-links {
+ 		margin-right: 0;
+    span,
+    a {
+   		height: auto;
+   		line-height: 1;
+   		padding: 5px;
+   	}
+    .prev,
+    .next {
+   		background-color: transparent;
+   		color: inherit;
+   		overflow: visible;
+   		width: auto;
+						&:before {display: none;}
+   	}
+   	.prev {
+   		position: static;
+   		left: auto;				
+   	}
+   	.next {
+   		position: static;
+   		right: auto;
+   	}
+		} // close .pagination-links
+	} // close .pagination
+} // close #buddypress
+
+/*--------------------------------------------------------------
+3.0 - BuddyPress
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+3.1 - Activity
+--------------------------------------------------------------*/
+
+/*--------------------------------------------------------------
+3.1.1 - Activity Listing
+--------------------------------------------------------------*/
+
+#buddypress { 
+	.activity-list {
+		.activity-content {
+			margin-top: -12px;
+ 		.activity-header  {
+				img.avatar {
+					display: inline-block;
+				}
+			} // close .activity-header
+		} // close .activity-content
+	} // close .activity-list
+} // close #buddypress
\ No newline at end of file
