2012-06-28 11:12:38 -07:00
|
|
|
/**
|
|
|
|
* Font Size Style
|
|
|
|
*/
|
|
|
|
|
2014-05-15 18:06:56 -07:00
|
|
|
/* Font size */
|
|
|
|
|
2013-11-23 13:03:14 -08:00
|
|
|
.NB-xs .NB-story,
|
|
|
|
.NB-xs .NB-story-comment,
|
|
|
|
.NB-xs .NB-header {
|
2014-05-15 17:03:25 -07:00
|
|
|
font-size: 13px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2012-12-11 17:53:17 -08:00
|
|
|
.NB-small .NB-story,
|
2013-03-05 14:12:27 -08:00
|
|
|
.NB-small .NB-story-comment,
|
|
|
|
.NB-small .NB-header {
|
2014-05-15 17:03:25 -07:00
|
|
|
font-size: 14px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2012-12-11 17:53:17 -08:00
|
|
|
.NB-medium .NB-story,
|
2013-03-05 14:12:27 -08:00
|
|
|
.NB-medium .NB-story-comment,
|
|
|
|
.NB-medium .NB-header {
|
2014-05-15 17:03:25 -07:00
|
|
|
font-size: 15px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2012-12-11 17:53:17 -08:00
|
|
|
.NB-large .NB-story,
|
2013-03-05 14:12:27 -08:00
|
|
|
.NB-large .NB-story-comment,
|
|
|
|
.NB-large .NB-header {
|
2015-09-22 13:10:35 -07:00
|
|
|
font-size: 17px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2013-11-23 13:03:14 -08:00
|
|
|
.NB-xl .NB-story,
|
|
|
|
.NB-xl .NB-story-comment,
|
|
|
|
.NB-xl .NB-header {
|
2015-09-22 13:10:35 -07:00
|
|
|
font-size: 20px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2014-05-15 18:06:56 -07:00
|
|
|
/* Font name */
|
|
|
|
|
2014-05-15 17:03:25 -07:00
|
|
|
.NB-avenir {
|
|
|
|
font-family: "Avenir-Book";
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
2014-05-15 17:03:25 -07:00
|
|
|
.NB-georgia {
|
|
|
|
font-family: "Georgia";
|
|
|
|
}
|
|
|
|
.NB-palatino {
|
|
|
|
font-family: "Palatino";
|
|
|
|
}
|
2017-11-05 18:22:58 -08:00
|
|
|
.NB-sanfrancisco {
|
|
|
|
font-family: "-apple-system";
|
|
|
|
}
|
2014-05-15 17:03:25 -07:00
|
|
|
.NB-helvetica {
|
|
|
|
font-family: "Helvetica";
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2020-02-23 15:21:32 -08:00
|
|
|
@font-face {
|
|
|
|
font-family: "ChronicleSSm-Book";
|
|
|
|
src: url("ChronicleSSm-Book.otf");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "GothamNarrow-Book";
|
|
|
|
src: url("GothamNarrow-Book.otf");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "WhitneySSm-Book";
|
|
|
|
src: url("WhitneySSm-Book-Bas.otf");
|
|
|
|
}
|
|
|
|
|
2014-05-15 18:06:56 -07:00
|
|
|
/* Line spacing */
|
2014-05-15 18:27:55 -07:00
|
|
|
.NB-story {
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
2014-05-15 18:06:56 -07:00
|
|
|
.NB-line-spacing-xs .NB-story {
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
.NB-line-spacing-small .NB-story {
|
|
|
|
line-height: 1.35em;
|
|
|
|
}
|
|
|
|
.NB-line-spacing-medium .NB-story {
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
.NB-line-spacing-large .NB-story {
|
2015-09-22 13:10:35 -07:00
|
|
|
line-height: 1.75em;
|
2014-05-15 18:06:56 -07:00
|
|
|
}
|
|
|
|
.NB-line-spacing-xl .NB-story {
|
2015-09-22 13:10:35 -07:00
|
|
|
line-height: 2.0em;
|
2014-05-15 18:06:56 -07:00
|
|
|
}
|
|
|
|
|
2012-06-28 11:12:38 -07:00
|
|
|
/**
|
|
|
|
* iPad Wide Style
|
|
|
|
*/
|
|
|
|
|
|
|
|
.NB-ipad-wide .NB-header {
|
2013-03-05 14:12:27 -08:00
|
|
|
padding: 1.2em 0;
|
2012-07-23 15:27:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-ipad-wide .NB-header .NB-header-inner {
|
|
|
|
margin: 0px 90px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-ipad-wide .NB-story {
|
2014-09-19 16:58:56 -07:00
|
|
|
padding: 30px 90px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-ipad-wide .NB-share-inner-wrapper {
|
|
|
|
margin: 0 90px;
|
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comments-public-teaser,
|
|
|
|
.NB-ipad-wide#story_pane .NB-story-comments-public-header,
|
|
|
|
.NB-ipad-wide#story_pane .NB-story-comments-friends-header,
|
2012-08-07 12:49:08 -07:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comments-shares-teaser {
|
|
|
|
padding-left: 90px;
|
|
|
|
padding-right: 90px;
|
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comment {
|
2012-08-07 12:49:08 -07:00
|
|
|
padding: 0 90px 2px 150px;
|
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comment .NB-user-avatar,
|
2013-03-05 12:26:37 -08:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comment .NB-user-avatar.NB-story-comment-reshare {
|
2012-08-07 12:49:08 -07:00
|
|
|
left: 88px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comment .NB-story-comment-reshares .NB-user-avatar {
|
2012-12-11 12:54:50 -08:00
|
|
|
left: 108px;
|
2012-08-07 17:24:55 -07:00
|
|
|
}
|
|
|
|
|
2013-03-05 12:26:37 -08:00
|
|
|
.NB-ipad-wide#story_pane .NB-story-comment .NB-button-wrapper {
|
|
|
|
margin-top: -5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-ipad-wide .NB-button.NB-share-button a {
|
2020-09-28 12:28:03 -04:00
|
|
|
font-size: 11px;
|
2013-03-05 12:26:37 -08:00
|
|
|
}
|
|
|
|
|
2012-06-28 11:12:38 -07:00
|
|
|
/**
|
|
|
|
* iPad Narrow Style
|
|
|
|
*/
|
|
|
|
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide .NB-header,
|
2012-06-28 11:12:38 -07:00
|
|
|
.NB-ipad-narrow .NB-header {
|
2013-03-05 14:12:27 -08:00
|
|
|
padding: 1em 30px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide .NB-story,
|
2012-06-28 11:12:38 -07:00
|
|
|
.NB-ipad-narrow .NB-story {
|
2016-03-07 23:00:42 -08:00
|
|
|
padding: 20px 30px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide .NB-share-inner-wrapper,
|
2012-06-28 11:12:38 -07:00
|
|
|
.NB-ipad-narrow .NB-share-inner-wrapper {
|
2014-09-19 16:58:56 -07:00
|
|
|
padding: 0 30px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comments-public-teaser,
|
|
|
|
.NB-iphone-wide#story_pane .NB-story-comments-public-header,
|
|
|
|
.NB-iphone-wide#story_pane .NB-story-comments-friends-header,
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comments-shares-teaser,
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comments-public-teaser,
|
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comments-public-header,
|
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comments-friends-header,
|
2012-08-07 12:49:08 -07:00
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comments-shares-teaser {
|
|
|
|
padding-left: 30px;
|
|
|
|
padding-right: 30px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comment,
|
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comment {
|
2012-08-07 12:49:08 -07:00
|
|
|
padding: 0 30px 2px 90px;
|
|
|
|
}
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comment .NB-user-avatar,
|
2012-12-11 12:54:50 -08:00
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comment .NB-user-avatar {
|
|
|
|
left: 26px;
|
2012-08-07 12:49:08 -07:00
|
|
|
}
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comment .NB-story-comment-reshares .NB-user-avatar,
|
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comment .NB-story-comment-reshares .NB-user-avatar {
|
2012-12-11 12:54:50 -08:00
|
|
|
left: 45px;
|
|
|
|
}
|
|
|
|
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comment .NB-user-avatar.NB-story-comment-reshare,
|
2012-12-11 12:54:50 -08:00
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comment .NB-user-avatar.NB-story-comment-reshare {
|
|
|
|
left: 26px;
|
2012-08-07 17:24:55 -07:00
|
|
|
}
|
|
|
|
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide#story_pane .NB-story-comment .NB-button-wrapper,
|
2013-03-05 12:26:37 -08:00
|
|
|
.NB-ipad-narrow#story_pane .NB-story-comment .NB-button-wrapper {
|
|
|
|
margin-top: -5px;
|
|
|
|
}
|
|
|
|
|
2014-09-19 17:25:57 -07:00
|
|
|
.NB-iphone-wide .NB-button.NB-share-button a,
|
2013-03-05 12:26:37 -08:00
|
|
|
.NB-ipad-narrow .NB-button.NB-share-button a {
|
2020-09-28 12:28:03 -04:00
|
|
|
font-size: 11px;
|
2013-03-05 12:26:37 -08:00
|
|
|
}
|
|
|
|
|
2012-06-28 11:12:38 -07:00
|
|
|
/**
|
|
|
|
* iPhone Style
|
|
|
|
*/
|
|
|
|
|
|
|
|
.NB-iphone .NB-header {
|
2013-03-05 14:12:27 -08:00
|
|
|
padding: .8em 12px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-iphone .NB-story {
|
2016-03-07 23:00:42 -08:00
|
|
|
padding: 12px 12px 12px;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
2016-03-03 16:28:39 -05:00
|
|
|
.NB-iphone .NB-share-inner-wrapper {
|
2012-06-28 11:12:38 -07:00
|
|
|
margin: 0 12px;
|
|
|
|
}
|
2012-07-23 10:57:11 -07:00
|
|
|
/*
|
2012-06-28 11:12:38 -07:00
|
|
|
.NB-iphone .NB-story img {
|
2012-06-29 13:48:00 -07:00
|
|
|
max-width: 290px !important;
|
2012-06-28 11:12:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Universal Style
|
|
|
|
*/
|
|
|
|
|
2012-06-14 10:19:36 -07:00
|
|
|
body {
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
margin: 0;
|
2015-09-22 13:10:35 -07:00
|
|
|
-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
|
2012-06-28 11:12:38 -07:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 120%;
|
2012-07-16 10:10:52 -07:00
|
|
|
font-family: Helvetica;
|
2012-06-14 10:19:36 -07:00
|
|
|
}
|
|
|
|
|
2012-08-07 11:27:00 -07:00
|
|
|
body.NB-iphone {
|
|
|
|
line-height: 110%;
|
|
|
|
}
|
|
|
|
|
2015-09-23 13:02:25 -07:00
|
|
|
/** {*/
|
|
|
|
/* box-sizing: border-box;*/
|
|
|
|
/*}*/
|
2015-09-23 11:34:03 -07:00
|
|
|
|
2013-03-05 10:39:15 -08:00
|
|
|
|
|
|
|
/* ========== */
|
|
|
|
/* = Header = */
|
|
|
|
/* ========== */
|
|
|
|
|
|
|
|
.NB-story-title {
|
|
|
|
clear: left;
|
2013-03-05 14:12:27 -08:00
|
|
|
font-size: 1.2em;
|
|
|
|
margin: .2em 0 .4em;
|
2013-03-05 10:39:15 -08:00
|
|
|
color: #313330;
|
|
|
|
}
|
|
|
|
|
2013-03-06 14:29:40 -08:00
|
|
|
.NB-non-river .NB-story-title {
|
|
|
|
padding-top: 9px;
|
|
|
|
}
|
|
|
|
.NB-river .NB-story-title {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
2013-03-05 10:39:15 -08:00
|
|
|
.NB-story-title-positive {
|
|
|
|
color: #58A353;
|
|
|
|
text-shadow: 0 1px 0 #E9F6E9;
|
|
|
|
}
|
|
|
|
.NB-story-title-negative {
|
|
|
|
color: #B85044;
|
|
|
|
text-shadow: 0 1px 0 #F6E9E9;
|
|
|
|
}
|
2013-10-04 12:37:51 -07:00
|
|
|
.NB-story-unread {
|
|
|
|
float: left;
|
|
|
|
margin: 6px 6px 0 0;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAACVElEQVQ4EXVTPW8TQRCd/XCM7QgF2QSnsYQbRGKgpA+QitY/IBUSrgAjQWW5oojocCTSRKJ1SRMpgCIhIVrERwlSmthnsBXLd7bPtzvM7HFgkDlrvbuz782+N7srEBHmv/395+tCQY2imwCiHK/hVwHwBg20trfvfJnHiyRBu91eGgU/dohYI4CaB82NDSVqLWfzD6vVashxl4DJQ//7S5pvcbB4YQ2KxTXIZDI8hfF4DJ3OCXS6J25OtMOzufxtTiI5cjrq7ViLW+l0GiqVq1AqlUBrDWEYusZjjvEaY6y1t5jDXLG392wDJX6gsapsXCHAGTA2YhAk9oQQIKUEJTVMpxP49PkjAEKECq9pC+YuWlCr51dBKQWTyRiM+U8CpZ2yQr4AXs/TIoKaNoibVBhYWTlH5AlE0YwUGECLtEl8QgLoJwUpUJQg5bBdrwuWTkqT1DIn4I/lRf/sHq+Q1182jDEuibMIUNZI+vkqTMOpk86AxHtCTnpOwsSIMNxT2pAVfCOll4LAd4ViciI9ISY9W2GitVPX0/xYgsHX7HcwGJAC45o1BFrQknXGuhpZeyStwV2L1gyHQ1fEeAfeZXHjQjOWOcxVBweHvXfv3xZI+nVeTKVSrmDOCtuZa3yx+v2+U0m2WvfvPXqh2d/oNKxnl/Xl2Wx20/M8yGazkMvl3JlzApbu+z4EQRCXA+GVP5rVefL7MTWbzaVMTtL1FPwSFz4mOm6DAnYnI1NvNBp/HlOcNv5/8rS5LlDW6Chu0H29SH1IxT8mX0cobOvxg8Zfz/knWROSyKoTDHAAAAAASUVORK5CYII=") no-repeat center center;
|
|
|
|
background-size: 8px;
|
|
|
|
}
|
2013-11-23 13:03:14 -08:00
|
|
|
.NB-xs .NB-story-unread {
|
2013-10-04 12:37:51 -07:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.NB-small .NB-story-unread {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
.NB-large .NB-story-unread {
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
2013-11-23 13:03:14 -08:00
|
|
|
.NB-xl .NB-story-unread {
|
2015-09-22 13:10:35 -07:00
|
|
|
margin-top: 9px;
|
2013-10-04 12:37:51 -07:00
|
|
|
}
|
|
|
|
.NB-story-unread.NB-positive {
|
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAJCSURBVDiNfZO9a1NhFMZ/733vvWnTSoZULBkqltBiHRxKsYOLUdvFpc6COAkGEUv9KwJ1kAacRGexg6MaijgInVw6FcWAWqu1ps3n/TjHIR9NVPrAgXd4z/M85zkcw1+4v56bMYY8Sg7DJADKRwwlVdYeLpW2+v+b7mN5PedjKKiSB+zfxB3ExrCG8mB1qRT0CJbXc77CS5QFgIlTWSZSM4z4KQBqQYVyZYvy9+22quEVcG11qRQ4ACJaUGVheDTBfHaRqfQsvk0QxA2CuIFvE0ylZ5nPLjI8mkCUqyJaADD3nl86B3wA7Fw2R9I7QSwRsUaoSkfRwRoX67jUw0M2t0sAEcp51xjuqGLHT2ZwHY9acEAsIaIxinaCMjjGYh0Pz/qMj2XY+fnVNQ55V2LNAaSTGRrhIWEc9NT7CbouIvFJj2T4tvsFhZyrwqRx2hE3wipRn7pqh8CYnotIAlzrt7crTLqKghhaUZ0wDo6sd5qPFt4miSTElZBOPIELfFLR6WrrN45jB6wPQI9GaUV1VBQMZRfhjcL0fmOX1FD6/839RjBUmnsoYJQNR0SLKhpX91o0o1p7hcdUM6pR3WuhorGIFu3mi88/5q6fHgMuBK0QO9QOTZF/KpQmB79qbfuwVrzx9pkLUNsPVpIp72wUxFf2d6okRl2GRjys8VAU0YhmLaRVjbqTvK5XwpXeLQDcfDTvJ1NeAY4/JqBYr4QrT+++DwYIurj95OKMY01elcvAGZQAKBuHDYl17fGtdwPn/AezNkQDSAjjKwAAAABJRU5ErkJggg==") no-repeat center center;
|
|
|
|
background-size: 8px;
|
|
|
|
}
|
|
|
|
.NB-story-unread.NB-negative {
|
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAACT0lEQVQ4EX1TTWsUQRB9NTPZXfcjxKhkFTxkL4FNIKDk6CVqBPXsj3Cv+iv2vPkRXkUvfhDILaAQiAEvihE0IR9gJjvZnZ3u8tXsxiQabCjorqr36nVVt6gqzq7th9ebYRC0BLoISGMY0y8Kee+879Rf/9w8my8nBJtP5grXugdthbYIDM8mne7VCaSzW5l83nyxkZo/JzDwlaO9l6yyZM7SzSlaHWGlZEe4bg+979u0nfxMdW/2q1cfG0lgnol4r515LKFUxPhCE+XpGwgY0W6Sm+3NZzHLYe59wxhWvj2oz4q6daiEk7dnEBUiaDoAsowMo/6IAFEEKYwhSzMcfPhMqGbqw/lInXvqoWG5PolAPdyvGCAB/YAfEQS8eci2kCCgguLUZSTb+5GIa0XO+UVlgeJ4BT7uQnt96IDVnT+vIAwgY1TBmOXGP/asgYtR5n0DlBhQsjNwLp/VqQYnE2YBCBsxcBA2wFQ4U6faiPKNKFzSA/opb2bSCf5n0UdVYsoI5psw1jRyql9ZaSblqCI61QInlf8m8VRAcEYVeWFgK/Be39nh8DCBZ0AdnxLPFxpjlmO5hvHer8jaQnWWDV5nsXCqVsYYm/W/NeAVduLEUhwHNR8srMWfyLRsjLtHx+izUd4qXWAWs5xR9WXDDp/ynBTicvkVWe8ZdZXzrtEie4JsSEbymNM5sgkN19takjxqbmh6+plIcli61PaCFjEXfyaBY2x5onf8zMDG9YdgxIzVW8WmSMgfqXc5/mm+5hSCLaauqLrOnY/9c9/5N8X6eiwIgjoOAAAAAElFTkSuQmCC") no-repeat center center;
|
|
|
|
background-size: 8px;
|
|
|
|
}
|
2013-11-23 13:25:26 -08:00
|
|
|
.NB-story-permalink {
|
|
|
|
color: #313350;
|
|
|
|
}
|
2019-06-19 20:45:30 -07:00
|
|
|
|
|
|
|
.NB-story-toggle-changes {
|
|
|
|
display: inline;
|
2019-06-20 13:37:20 -07:00
|
|
|
float: left;
|
2019-06-25 19:51:22 -07:00
|
|
|
padding-top: 1px;
|
2019-06-20 13:37:20 -07:00
|
|
|
padding-left: 24px;
|
2019-06-19 20:45:30 -07:00
|
|
|
color: #818776;
|
|
|
|
font-size: .8em;
|
|
|
|
white-space: nowrap;
|
2019-06-20 13:37:20 -07:00
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAACHklEQVRYCe3YTS8DQRwG8GeXhAOnrVAEofESIiFuJC7q9SAOvoC4Cgc+BQfiik/g0BD1UomDs3hr0QjBRRGtqx527X+TSTayu53d7jRNmKTZ7aQz85tnZ3aSSpqmoZhKqR1mbX0lL6kESVOhzi7MLW3ZjWFVL1tV+lGnQZN01GbiJk4TM38cu7dNiLWan1tkt66uesLG709PT6AoCmqqg1zthSXERv/OfiMS2Ubq7ZVVOV6Fg2h0N6iCgMyo1fXlGaeICgZiKBnyhhOqoCBC0e4jlF1KOXeZXcNc9Xa7k3YfoezaFzwhOwir/zsgOiOPYvtIJm/Z5LmuwtZQ7PgAt3cJ3CVvDEhbWwcXyPdHRsmoqorGhiZI+mlG359fnrgw9CNfE6LBD2NRA9PR3mkgCBMeGuUG+ZYQw1RWVKKsrBzR/V2EQq0YDo8ZSfGKfAGZMcFgnY7ZgVyiv/5k9927b/FrqlYYSmYkPO4qGdZtXiC/MYTyDBKB8QwShfEEYph0+hPBmlpjAeezZghhLq4eGcNkMml8fLxjdy9ibG2vC9gMYfeuQNfxS2SzWUxNTiOgBEDHgZ8YQnGDKJ3zizPU1dbrh2YUSqDKdwyBuI+Oh8d7fH1lEE9cobenD12d3Z7eMzSoU+EGpVKvmBifREtzSAiEIblBA/2DrI3QK/caEqowdf4PMoVheVt0CeVc1OxfDMvpCKgsuoQkegMXU/kBCWzUL4jai/kAAAAASUVORK5CYII=") no-repeat 0 center;
|
|
|
|
background-size: 16px;
|
2019-06-19 20:45:30 -07:00
|
|
|
}
|
2013-03-05 10:39:15 -08:00
|
|
|
.NB-story-date {
|
|
|
|
display: inline;
|
|
|
|
color: #818776;
|
2013-03-05 14:12:27 -08:00
|
|
|
font-size: .8em;
|
2013-03-05 10:39:15 -08:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-middot {
|
|
|
|
display: inline-block;
|
|
|
|
color: #A0A0A0;
|
|
|
|
padding: 0 8px 0;
|
|
|
|
line-height: 8px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2012-06-24 23:02:37 -07:00
|
|
|
.NB-story-author {
|
2013-03-05 10:39:15 -08:00
|
|
|
display: inline;
|
2013-03-05 14:12:27 -08:00
|
|
|
font-size: .8em;
|
2013-03-05 10:39:15 -08:00
|
|
|
color: #959B8B;
|
2012-12-07 17:18:31 -08:00
|
|
|
text-decoration: none;
|
2013-03-05 10:39:15 -08:00
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
2012-12-10 20:22:21 -08:00
|
|
|
position: relative;
|
2012-06-24 23:02:37 -07:00
|
|
|
}
|
2012-12-07 16:17:48 -08:00
|
|
|
.NB-story-author-positive {
|
|
|
|
color: #58A353;
|
|
|
|
text-shadow: 0 1px 0 #E9F6E9;
|
|
|
|
}
|
|
|
|
.NB-story-author-negative {
|
|
|
|
color: #B85044;
|
|
|
|
text-shadow: 0 1px 0 #F6E9E9;
|
|
|
|
}
|
2013-03-05 10:39:15 -08:00
|
|
|
|
2012-06-24 23:02:37 -07:00
|
|
|
.NB-story-tags {
|
2013-03-05 14:12:27 -08:00
|
|
|
font-size: .7em;
|
2012-06-24 23:02:37 -07:00
|
|
|
overflow: hidden;
|
2013-03-05 14:12:27 -08:00
|
|
|
padding: .7em 2px .2em 0;
|
2013-03-06 14:29:40 -08:00
|
|
|
line-height: 1.2em;
|
2017-11-05 18:49:55 -08:00
|
|
|
margin-bottom: -12px;
|
2017-10-04 17:10:58 -07:00
|
|
|
/* height: 1.8em;*/
|
2012-06-24 23:02:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story-tag {
|
|
|
|
float: left;
|
2012-12-07 17:18:31 -08:00
|
|
|
text-decoration: none;
|
2012-06-24 23:02:37 -07:00
|
|
|
font-weight: normal;
|
2013-03-05 10:39:15 -08:00
|
|
|
padding: 1px 5px;
|
2013-03-05 14:12:27 -08:00
|
|
|
margin: 0px 4px 12px 0;
|
2013-03-05 10:39:15 -08:00
|
|
|
background-color: rgba(0, 0, 0, .1);
|
|
|
|
color: #959B8B;
|
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
2012-06-24 23:02:37 -07:00
|
|
|
-webkit-border-radius: 4px;
|
2013-03-05 10:39:15 -08:00
|
|
|
border: 1px solid transparent;
|
|
|
|
border-color: rgba(255, 255, 255, .3) transparent rgba(0, 0, 0, .1);
|
2012-12-10 20:22:21 -08:00
|
|
|
position: relative;
|
2012-06-24 23:02:37 -07:00
|
|
|
}
|
2012-12-07 16:17:48 -08:00
|
|
|
.NB-story-tag-positive {
|
|
|
|
background-color: #88B383;
|
|
|
|
color: white;
|
|
|
|
text-shadow: 0 1px 0 #588353;
|
|
|
|
}
|
|
|
|
.NB-story-tag-negative {
|
|
|
|
background-color: #C89094;
|
|
|
|
color: white;
|
|
|
|
text-shadow: 0 1px 0 #986064;
|
|
|
|
}
|
2012-12-10 20:22:21 -08:00
|
|
|
.NB-story-tag .NB-highlight,
|
2014-11-04 17:13:53 -08:00
|
|
|
.NB-user-tag .NB-highlight,
|
2012-12-11 11:50:06 -08:00
|
|
|
.NB-story-author .NB-highlight,
|
|
|
|
.NB-show-profile .NB-highlight {
|
2012-12-10 20:22:21 -08:00
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
left: -2px;
|
|
|
|
bottom: -2px;
|
|
|
|
right: -2px;
|
2012-12-11 12:01:49 -08:00
|
|
|
background-color: #000;
|
2012-12-10 20:22:21 -08:00
|
|
|
opacity: .25;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.NB-story-tag.pressed .NB-highlight,
|
2014-11-04 17:13:53 -08:00
|
|
|
.NB-user-tag.pressed .NB-highlight,
|
2012-12-11 11:50:06 -08:00
|
|
|
.NB-story-author.pressed .NB-highlight,
|
|
|
|
.pressed .NB-show-profile .NB-highlight,
|
|
|
|
.NB-show-profile.pressed .NB-highlight {
|
2012-12-10 20:22:21 -08:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
}
|
2014-11-04 17:13:53 -08:00
|
|
|
|
|
|
|
.NB-user-tags {
|
|
|
|
font-size: .7em;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: .7em 2px 0 0;
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-user-tag {
|
|
|
|
float: left;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 1px 5px 1px 18px;
|
|
|
|
margin: 4px 4px 4px 0;
|
|
|
|
color: #959B8B;
|
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-color: rgba(255, 255, 255, .3) transparent rgba(0, 0, 0, .1);
|
|
|
|
position: relative;
|
|
|
|
background: rgba(0, 0, 0, .1) url("tag.png") no-repeat 2px 0;
|
|
|
|
background-size: 14px;
|
|
|
|
}
|
|
|
|
|
2014-11-10 16:00:59 -08:00
|
|
|
.NB-user-tag.NB-add-user-tag {
|
|
|
|
background: rgba(0, 0, 0, .25) url("add_tag.png") no-repeat 6px 3px;
|
|
|
|
background-size: 8px;
|
|
|
|
color: #E5EBDB;
|
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
|
|
|
|
}
|
|
|
|
|
2013-08-05 17:29:42 -07:00
|
|
|
.NB-story-starred-date {
|
2014-11-04 17:53:27 -08:00
|
|
|
margin: 6px 0 0 0;
|
2013-08-05 17:29:42 -07:00
|
|
|
padding: 0 0 0 20px;
|
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAEx0lEQVRYCc1YQWhcRRj+Z95umwRJIRgREQ3VU0XjTfSkEbF681TUigdBIXTT3ZCm7aVLDlKbDdlttyxW8CBqtCdvKorWm3gSFT1piR4UDCx0kWaT7Jvp/+17Mzvv7du3L5pgB5aZ+eefb77M/PO/byK01nQ7FXk7kQGX3G4JXXjnwqGRbXlUkJzRpKdJ02HGGA9xWiToOtt+JKG/ah9Qn59+/fSN3awhsh5ZtVF9UCr/DC/2Mi8wknGRtiCx5nvyfGm29GuWOUMJVavVUZnzlxisyL98FtAEnx221VTHK5dKpc2EcWtKJVSvVx7QJD/ho3nYzvgPDd6tnwSpFwqFU78NghlIaLW+Ou2R+pInTvZPFutE+qoi/XWO9C9EoxuBz+Zkh8QRSWKGSBxjn6n+ubThk3xmvjD/Q8IYh17CtcfOKBLf8oQIGUH0O5M4e6N582q5XFZJgMa2tLQkD02MHeNdeYtt9xl7WG9I0o8n7VQfIcSMl1Pf9R2ToLW8HHtjdnb2nxh4arfRaNyxo25e4cvwkuuI4/M78rF4TPVdewQwp8pIzPDOrM6dWFhgwF1n0fAPOH7p8sqffBjA6Bb8weFlWTQ21JEd6l5t3+eYcG4T78zJEwvH2ZZIpnZp+RUh5CrAtFbzxbnF99FOKOLi5ZUPYju1ozzviJsSIpna89VZBnKv9h84JrYlksGiTOYKV3fix+23YRtQNLAQh854vpvbHIMlhAzM2xg5Z+6fyRAzow7emNPuawILlyIywIkWaxubJYTPARudDCzWcZuM417VASbShi0jB9rec6ZnCZEWTxtjUOuhVzvqn63XTReCPna9paAZ0+8REvSIMaJG0nP7e9lWWl1z8TgFTJt+j1Dw1TZ2lgHIwPtT4tgcq4fNSj1CRDawgkHzOTCu2epafRlqILU0m5t/xxyMfCGXUMSn2WwOvOoRR6LI15t10ntZSMUwbNclFBFSExOjd1mvlAYnQ+SpLcfFG0YqAbtl5vcIQek5BV9tpzuwicysSb3GDr7jlEoqjs1BbdfuEYLsdEogIRxDSrNYWPyQSb3KLplIeUI86cJxUFsp0iPEGth1gp6BhIjaBvdSSL1baVTuNjOBqbV40fRRK002xdgFIch5rN1z1FPQM73+8NYAUvn8dp4/YUEJMPWU6XPd3h7xPzN9SwivAz7LNTOAmo/tPPSMaxvWdkgh0BVLjnPFYvEvzAMWMF0MrOm+TCwhOOF1wBUEebfwvb+/K674/IwtSw1S256e0n7u3uLcwpvhHAEsYDoYO+Ga1hTRQ7BerK8sc3XKenBDCFphgQYhxXj/qggWaMuuQAtRKicLXVwL2qcY8VRhCXuUI9+qRgCxuLpnHyRs2TIJG307BPteinzETOyYsMQGK8UnXKUII0oiIQzUapVHhSe+4Gbk5YExnrYuhP7I1/ob6uR+brVa3WfQ+Pj4JOU6DyHPBFc7cpuCqUxGkny2UJj/3hjceiAhOP0fD8XILXOZoo13E54q3Kzwz94+jO2yYG4FWElvMRcrdYdcR7xI8AjgYIfudqSu69XX3vt/NsSXgCA/uCWf54T2FP+mQ3FltBSS63V8m/h3beug+tRNenGspH7mHUqavB+21BjajwWHYd4CVCEE1ECzPqUAAAAASUVORK5CYII=") no-repeat 0 0;
|
|
|
|
background-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 10px;
|
|
|
|
color: #818776;
|
|
|
|
line-height: 17px;
|
|
|
|
}
|
|
|
|
|
2012-06-24 23:02:37 -07:00
|
|
|
|
2016-05-11 18:48:49 -07:00
|
|
|
.NB-story h1,
|
2012-07-03 17:54:36 -07:00
|
|
|
.NB-story h2,
|
|
|
|
.NB-story h3,
|
|
|
|
.NB-story h4,
|
|
|
|
.NB-story h5,
|
|
|
|
.NB-story h6,
|
|
|
|
.NB-story table,
|
2016-05-11 18:48:49 -07:00
|
|
|
.NB-story tr,
|
|
|
|
.NB-story td,
|
2012-07-03 17:54:36 -07:00
|
|
|
.NB-story span,
|
|
|
|
.NB-story pre,
|
|
|
|
.NB-story code {
|
2012-06-18 17:20:34 -07:00
|
|
|
overflow: auto;
|
2012-07-24 16:42:18 -07:00
|
|
|
clear: both;
|
2016-05-11 18:48:49 -07:00
|
|
|
min-width: 0 !important;
|
|
|
|
width: auto !important;
|
|
|
|
-webkit-border-horizontal-spacing: 0;
|
|
|
|
}
|
2012-07-30 15:50:52 -07:00
|
|
|
|
2016-05-11 18:48:49 -07:00
|
|
|
.NB-story table,
|
|
|
|
.NB-story tbody,
|
|
|
|
.NB-story tr,
|
|
|
|
.NB-story td {
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
display: block;
|
2012-07-30 15:50:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story h1,
|
|
|
|
.NB-story h2,
|
|
|
|
.NB-story h3,
|
|
|
|
.NB-story h4,
|
|
|
|
.NB-story h5,
|
|
|
|
.NB-story h6 {
|
|
|
|
line-height: 140%;
|
2012-06-18 17:20:34 -07:00
|
|
|
}
|
|
|
|
|
2012-08-07 11:27:00 -07:00
|
|
|
.NB-iphone .NB-story h1,
|
|
|
|
.NB-iphone .NB-story h2,
|
|
|
|
.NB-iphone .NB-story h3,
|
|
|
|
.NB-iphone .NB-story h4,
|
|
|
|
.NB-iphone .NB-story h5,
|
|
|
|
.NB-iphone .NB-story h6 {
|
|
|
|
line-height: 120%;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-14 10:19:36 -07:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2013-05-28 18:07:19 -07:00
|
|
|
color: #1B248C;
|
|
|
|
}
|
|
|
|
a:active {
|
|
|
|
color: #82301A;
|
2012-06-14 10:19:36 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 17:54:36 -07:00
|
|
|
.NB-story blockquote {
|
2016-02-27 10:00:09 -08:00
|
|
|
border-left: 2px solid #ECEFE9;
|
2016-03-07 23:00:42 -08:00
|
|
|
padding: 1em;
|
|
|
|
margin: 20px 0;
|
2016-02-27 10:00:09 -08:00
|
|
|
background-color: #F4F6F2;
|
2012-06-20 19:18:29 -07:00
|
|
|
}
|
|
|
|
|
2012-06-28 19:15:30 -07:00
|
|
|
div + p {
|
|
|
|
margin: 20px 0px 20px 0;
|
|
|
|
}
|
|
|
|
|
2016-03-07 23:00:42 -08:00
|
|
|
.NB-story p,
|
|
|
|
.NB-story div {
|
|
|
|
margin: 0px 0px 20px 0;
|
2012-06-22 21:53:45 -07:00
|
|
|
clear: both;
|
2012-06-20 19:18:29 -07:00
|
|
|
}
|
2016-03-07 23:00:42 -08:00
|
|
|
.NB-story blockquote p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2012-06-20 19:18:29 -07:00
|
|
|
|
2012-07-03 17:54:36 -07:00
|
|
|
.NB-story small {
|
2012-06-20 19:18:29 -07:00
|
|
|
font-size: 11px;
|
2012-06-14 10:19:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-header {
|
2013-03-06 14:29:40 -08:00
|
|
|
line-height: 1.4em;
|
2013-02-14 15:36:21 -08:00
|
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#FEFEFE), to(#F3F4EF));
|
|
|
|
border-bottom: 1px solid #C2C5BE;
|
2013-03-05 10:39:15 -08:00
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
2012-06-24 23:02:37 -07:00
|
|
|
overflow: hidden;
|
|
|
|
max-width: none;
|
2013-03-06 14:29:40 -08:00
|
|
|
|
2012-12-27 18:37:05 -08:00
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
2012-06-14 10:19:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story {
|
2014-09-19 16:58:56 -07:00
|
|
|
overflow: hidden;
|
2012-06-14 10:19:36 -07:00
|
|
|
}
|
|
|
|
|
2012-12-07 16:17:48 -08:00
|
|
|
.NB-story a.NB-contains-image {
|
2012-06-22 15:53:51 -07:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2012-06-28 13:24:40 -07:00
|
|
|
.NB-story div {
|
2012-07-31 00:53:16 -07:00
|
|
|
max-width: 100% !important;
|
2012-06-28 13:24:40 -07:00
|
|
|
}
|
2015-09-21 16:42:22 -07:00
|
|
|
.NB-story figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-story img,
|
|
|
|
.NB-story video {
|
2012-07-24 22:19:40 -07:00
|
|
|
margin: 20px auto;
|
2012-11-09 14:13:44 -08:00
|
|
|
height: auto !important;
|
2012-10-30 17:05:39 -07:00
|
|
|
width: auto;
|
2014-09-19 14:48:54 -07:00
|
|
|
max-width: 100%;
|
2012-08-01 21:40:19 -07:00
|
|
|
display: none;
|
2014-09-18 15:15:41 -07:00
|
|
|
-webkit-touch-callout: none;
|
2020-02-23 15:21:32 -08:00
|
|
|
-webkit-user-select: none; /* Disable selection/copy in the web view */
|
2012-06-22 15:53:51 -07:00
|
|
|
}
|
|
|
|
|
2017-11-27 22:55:55 -08:00
|
|
|
/* Get iOS 11 Smart Invert to leave images and videos alone. */
|
|
|
|
@media (inverted-colors: inverted) {
|
|
|
|
.NB-story img,
|
|
|
|
.NB-story video {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-11 12:51:40 -07:00
|
|
|
.NB-story .NB-twitter-rss-author img,
|
|
|
|
.NB-story .NB-twitter-rss-retweet img {
|
|
|
|
margin: 0;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-story .NB-large-image,
|
|
|
|
.NB-story .NB-medium-image {
|
2014-09-19 14:48:54 -07:00
|
|
|
margin: 20px auto;
|
|
|
|
display: block;
|
2012-10-30 17:05:39 -07:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2012-07-23 10:57:11 -07:00
|
|
|
display: block;
|
|
|
|
float: none;
|
2012-07-24 16:42:18 -07:00
|
|
|
clear: both;
|
2012-06-22 15:53:51 -07:00
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-story .NB-large-image {
|
2014-09-19 14:48:54 -07:00
|
|
|
max-width: 320px;
|
|
|
|
margin-left: -12px !important;
|
|
|
|
width: 320px !important;
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-375 .NB-story .NB-large-image {
|
2014-09-24 12:00:47 -07:00
|
|
|
max-width: 375px;
|
|
|
|
margin-left: -12px !important;
|
|
|
|
width: 375px !important;
|
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-414 .NB-story .NB-large-image {
|
2014-09-24 12:00:47 -07:00
|
|
|
max-width: 414px;
|
|
|
|
margin-left: -12px !important;
|
|
|
|
width: 414px !important;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-narrow .NB-story .NB-large-image {
|
2014-09-19 16:58:56 -07:00
|
|
|
max-width: 500px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 500px !important;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-narrow.NB-titles-bottom .NB-story .NB-large-image {
|
2017-05-11 12:51:40 -07:00
|
|
|
max-width: 600px;
|
|
|
|
width: 600px !important;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-pro-12-narrow .NB-story .NB-large-image {
|
2017-11-01 21:51:56 -07:00
|
|
|
max-width: 755px;
|
2016-04-06 18:14:06 -07:00
|
|
|
margin-left: -30px !important;
|
2017-11-01 21:51:56 -07:00
|
|
|
width: 755px !important;
|
2016-04-06 18:14:06 -07:00
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-pro-12-narrow.NB-width-1024 .NB-story .NB-large-image {
|
2017-05-11 12:51:40 -07:00
|
|
|
max-width: 1024px;
|
|
|
|
width: 1024px !important;
|
|
|
|
}
|
2016-04-06 18:14:06 -07:00
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-pro-10-narrow .NB-story .NB-large-image {
|
2017-11-01 21:51:56 -07:00
|
|
|
max-width: 565px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 565px !important;
|
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-pro-10-narrow.NB-width-834 .NB-story .NB-large-image {
|
2017-11-01 21:51:56 -07:00
|
|
|
max-width: 834px;
|
|
|
|
width: 834px !important;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-wide .NB-story .NB-large-image {
|
2014-09-19 18:22:47 -07:00
|
|
|
max-width: 656px;
|
2014-09-19 17:25:57 -07:00
|
|
|
margin-left: -90px !important;
|
2014-09-19 18:22:47 -07:00
|
|
|
width: 656px !important;
|
2014-09-19 17:25:57 -07:00
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-pro-12-wide .NB-story .NB-large-image {
|
2017-11-01 21:51:56 -07:00
|
|
|
max-width: 997px;
|
|
|
|
margin-left: -90px !important;
|
|
|
|
width: 997px !important;
|
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-ipad-pro-10-wide .NB-story .NB-large-image {
|
2017-11-01 21:51:56 -07:00
|
|
|
max-width: 743px;
|
2016-04-06 18:14:06 -07:00
|
|
|
margin-left: -90px !important;
|
2017-11-01 21:51:56 -07:00
|
|
|
width: 743px !important;
|
2016-04-06 18:14:06 -07:00
|
|
|
}
|
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-iphone-wide .NB-story .NB-large-image {
|
2014-10-15 15:41:24 -07:00
|
|
|
max-width: 568px;
|
2014-09-24 12:00:47 -07:00
|
|
|
margin-left: -30px !important;
|
2014-10-15 15:41:24 -07:00
|
|
|
width: 568px !important;
|
2014-09-24 12:00:47 -07:00
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-480 .NB-story .NB-large-image {
|
2014-12-02 15:42:47 -08:00
|
|
|
max-width: 480px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 480px !important;
|
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-667 .NB-story .NB-large-image {
|
2014-09-24 12:00:47 -07:00
|
|
|
max-width: 667px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 667px !important;
|
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-724 .NB-story .NB-large-image {
|
2017-11-06 21:13:07 -08:00
|
|
|
max-width: 724px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 724px !important;
|
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-736 .NB-story .NB-large-image {
|
2014-09-24 12:00:47 -07:00
|
|
|
max-width: 736px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 736px !important;
|
2014-09-19 16:58:56 -07:00
|
|
|
}
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-width-768 .NB-story .NB-large-image {
|
2014-11-15 14:05:26 -05:00
|
|
|
max-width: 768px;
|
|
|
|
margin-left: -30px !important;
|
|
|
|
width: 768px !important;
|
|
|
|
}
|
2014-09-19 16:58:56 -07:00
|
|
|
|
2018-04-14 21:26:03 -07:00
|
|
|
.NB-story .NB-small-image {
|
2012-06-28 13:24:40 -07:00
|
|
|
display: inline-block;
|
2012-08-01 21:40:19 -07:00
|
|
|
margin: 2px;
|
2012-06-28 13:24:40 -07:00
|
|
|
}
|
|
|
|
|
2012-06-14 10:19:36 -07:00
|
|
|
ins {
|
2019-06-19 20:45:30 -07:00
|
|
|
background-color: #BEE8BC;
|
2012-06-14 10:19:36 -07:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
del {
|
2019-06-19 20:45:30 -07:00
|
|
|
background-color: #f5c3c3
|
|
|
|
/*display: none;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story ins {
|
|
|
|
background-color: #BEE8BC;
|
|
|
|
text-decoration: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story del {
|
|
|
|
background-color: #f5c3c3
|
2012-06-14 16:30:37 -07:00
|
|
|
}
|
|
|
|
|
2012-06-22 18:01:08 -07:00
|
|
|
/* Comments */
|
|
|
|
|
2013-03-05 17:39:49 -08:00
|
|
|
#NB-comments-wrapper {
|
2013-03-13 14:05:58 -07:00
|
|
|
margin-bottom: 64px;
|
2013-03-05 17:39:49 -08:00
|
|
|
}
|
2012-07-23 10:57:11 -07:00
|
|
|
.NB-feed-story-comments {
|
|
|
|
margin: 0 !important;
|
|
|
|
clear: both !important;
|
|
|
|
max-width: none !important;
|
|
|
|
}
|
2016-02-06 14:40:07 -08:00
|
|
|
.NB-story-comments-group:first-child {
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
.NB-story-comments-group:last-child {
|
|
|
|
border-bottom: 1px solid #EAECE8;
|
2013-03-05 12:26:37 -08:00
|
|
|
}
|
2012-07-23 10:57:11 -07:00
|
|
|
|
2012-08-01 12:41:02 -07:00
|
|
|
#story_pane .NB-story-comments-shares-teaser.NB-highlighted {
|
|
|
|
-webkit-transition: background-color .6s linear;
|
|
|
|
background-color: #FBE5C7;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comments-shares-teaser {
|
|
|
|
-webkit-transition: background-color .6s linear;
|
|
|
|
}
|
|
|
|
|
2012-07-30 17:07:02 -07:00
|
|
|
#story_pane .NB-story-comment-reply.NB-highlighted {
|
|
|
|
background-color: #FBE5C7;
|
|
|
|
}
|
|
|
|
|
2012-07-30 14:58:57 -07:00
|
|
|
#story_pane .NB-story-comment.NB-highlighted {
|
2012-07-30 17:07:02 -07:00
|
|
|
-webkit-transition: background-color .6s linear;
|
2012-07-30 14:58:57 -07:00
|
|
|
background-color: #FBE5C7;
|
|
|
|
}
|
|
|
|
|
2012-07-30 17:07:02 -07:00
|
|
|
#story_pane .NB-story-comment-reply,
|
2012-07-30 14:58:57 -07:00
|
|
|
#story_pane .NB-story-comment {
|
2012-07-30 15:50:52 -07:00
|
|
|
-webkit-transition: background-color .6s linear;
|
2012-07-30 14:58:57 -07:00
|
|
|
}
|
2012-12-11 12:54:50 -08:00
|
|
|
#story_pane .NB-story-comment-reply .NB-show-profile {
|
|
|
|
float: left;
|
2015-09-16 20:41:06 -07:00
|
|
|
left: -34px;
|
2012-12-11 12:54:50 -08:00
|
|
|
}
|
2012-08-07 12:49:08 -07:00
|
|
|
.NB-story-comment:last-child {
|
|
|
|
border-bottom: 1px solid #A6A6A6;
|
|
|
|
}
|
|
|
|
|
2012-06-22 18:01:08 -07:00
|
|
|
#story_pane .NB-story-comment .NB-story-comment-content {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-story-comments-label {
|
2012-08-02 18:33:55 -07:00
|
|
|
float: left;
|
2012-12-11 11:50:06 -08:00
|
|
|
margin-right: 2px;
|
2014-09-17 16:41:48 -07:00
|
|
|
white-space: nowrap;
|
2012-08-02 18:33:55 -07:00
|
|
|
}
|
|
|
|
|
2016-01-21 14:01:25 -08:00
|
|
|
.NB-story-share-label {
|
2012-08-13 15:34:53 -07:00
|
|
|
float: right;
|
2012-12-11 11:50:06 -08:00
|
|
|
margin-left: 2px;
|
2014-09-17 16:41:48 -07:00
|
|
|
white-space: nowrap;
|
2012-08-02 18:33:55 -07:00
|
|
|
}
|
|
|
|
|
2012-06-14 16:30:37 -07:00
|
|
|
/* Sharing */
|
|
|
|
|
2012-08-13 18:45:06 -07:00
|
|
|
.NB-share-wrapper {
|
|
|
|
margin-top: 36px;
|
2013-03-13 14:05:58 -07:00
|
|
|
overflow: hidden;
|
2012-08-13 18:45:06 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 17:54:36 -07:00
|
|
|
a.NB-show-profile {
|
2012-12-11 11:50:06 -08:00
|
|
|
margin: 0 0 0 2px;
|
|
|
|
position: relative;
|
2012-07-03 17:54:36 -07:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2012-07-26 10:17:08 -07:00
|
|
|
|
2012-07-30 18:49:12 -07:00
|
|
|
/* Disable certain interactions on touch devices */
|
|
|
|
.NB-button,
|
2012-12-11 11:50:06 -08:00
|
|
|
a.NB-show-profile {
|
2012-06-24 18:17:22 -07:00
|
|
|
-webkit-text-size-adjust: none;
|
|
|
|
-webkit-user-select: none;
|
2012-07-26 10:17:08 -07:00
|
|
|
-webkit-touch-callout: none;
|
2012-06-24 18:17:22 -07:00
|
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
2012-12-11 17:53:17 -08:00
|
|
|
.NB-button.NB-share-button a {
|
|
|
|
display: block;
|
2013-03-05 12:26:37 -08:00
|
|
|
font-size: 11px;
|
2012-12-11 17:53:17 -08:00
|
|
|
}
|
|
|
|
|
2012-07-23 10:57:11 -07:00
|
|
|
/* Edit, Like, and Reply buttons */
|
|
|
|
|
2012-08-13 15:34:53 -07:00
|
|
|
.NB-button {
|
|
|
|
padding: 0px 0px 4px 4px;
|
2012-07-26 13:54:45 -07:00
|
|
|
cursor: pointer;
|
2012-12-11 17:53:17 -08:00
|
|
|
white-space: nowrap;
|
|
|
|
float: right;
|
2013-03-05 12:26:37 -08:00
|
|
|
|
2016-01-21 14:08:36 -08:00
|
|
|
line-height: 0px;
|
|
|
|
height: 20px;
|
2013-03-05 12:26:37 -08:00
|
|
|
font-family: Helvetica, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
display: block;
|
|
|
|
text-shadow: 0px 1px 0px rgba(255,255,255,1);
|
2012-07-26 13:54:45 -07:00
|
|
|
}
|
|
|
|
|
2012-07-27 12:27:13 -07:00
|
|
|
.NB-button.NB-share-button {
|
2014-05-20 18:43:37 -07:00
|
|
|
float: right;
|
2012-08-08 12:02:54 -07:00
|
|
|
padding: 0px 0px 20px 0px;
|
2014-05-20 18:43:37 -07:00
|
|
|
margin: 0;
|
2012-08-13 15:34:53 -07:00
|
|
|
display: block;
|
2014-05-20 18:43:37 -07:00
|
|
|
width: 28%;
|
2012-12-27 23:04:25 -08:00
|
|
|
}
|
|
|
|
.NB-button.NB-train-button {
|
2014-05-20 18:43:37 -07:00
|
|
|
float: left;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.NB-button.NB-save-button {
|
|
|
|
float: none;
|
|
|
|
margin: 0 auto;
|
2012-07-27 12:27:13 -07:00
|
|
|
}
|
|
|
|
|
2013-03-05 12:26:37 -08:00
|
|
|
.NB-button a {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 1px;
|
|
|
|
line-height: 16px;
|
|
|
|
font-family: Helvetica, sans-serif;
|
|
|
|
font-size: 9px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: rgba(255, 255, 255, .8);
|
|
|
|
text-shadow: 0px 1px 0px rgba(0, 0, 0, .1);
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2014-05-21 12:24:22 -07:00
|
|
|
.NB-button.active a,
|
|
|
|
.NB-button.NB-button-active a {
|
2013-03-05 12:26:37 -08:00
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
2012-07-23 10:57:11 -07:00
|
|
|
.NB-button div {
|
2013-03-05 12:26:37 -08:00
|
|
|
padding: 2px 6px 2px;
|
|
|
|
height: 16px;
|
2014-05-21 13:21:40 -07:00
|
|
|
background: -webkit-gradient(
|
|
|
|
linear, left top, left bottom,
|
|
|
|
from(#E9AF86),
|
|
|
|
color-stop(0.50, #E9AF86),
|
|
|
|
color-stop(0.50, #E5A87F),
|
|
|
|
to(#E5A87F));
|
2013-03-05 12:26:37 -08:00
|
|
|
border: 1px solid transparent;
|
|
|
|
border-color: rgba(255, 255, 255, .3) rgba(0, 0, 0, .2) rgba(0, 0, 0, .3) rgba(255, 255, 255, .2);
|
|
|
|
border-radius: 2px;
|
2012-07-23 10:57:11 -07:00
|
|
|
}
|
2013-03-05 12:26:37 -08:00
|
|
|
.NB-button.NB-share-button div {
|
2013-03-06 14:29:40 -08:00
|
|
|
height: auto;
|
2020-09-28 12:28:03 -04:00
|
|
|
background: transparent;
|
|
|
|
color: rgba(0, 0, 0, 0.25);
|
2013-03-13 14:05:58 -07:00
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
2020-09-28 12:28:03 -04:00
|
|
|
border: 1px solid rgb(0, 0, 0, 0.25);
|
|
|
|
border-radius: 4px;
|
2014-05-21 13:21:40 -07:00
|
|
|
line-height: 18px;
|
2013-03-13 14:05:58 -07:00
|
|
|
}
|
2014-05-21 12:24:22 -07:00
|
|
|
.NB-button:active div,
|
|
|
|
.NB-button.NB-button-active div {
|
2013-03-13 14:05:58 -07:00
|
|
|
background: -webkit-gradient(
|
|
|
|
linear, left top, left bottom,
|
|
|
|
from(#6C6D69),
|
|
|
|
color-stop(0.50, #6C6D69),
|
|
|
|
color-stop(0.50, #656662),
|
|
|
|
to(#656662));
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-button.selected div {
|
|
|
|
background: #2379bf;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2014-05-21 12:24:22 -07:00
|
|
|
.NB-button.NB-share-button:active div,
|
|
|
|
.NB-button.NB-share-button.NB-button-active div {
|
2013-09-12 14:48:19 -07:00
|
|
|
color: darkgrey;
|
2013-03-13 14:05:58 -07:00
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
|
2013-03-05 12:26:37 -08:00
|
|
|
}
|
2012-07-29 22:44:28 -07:00
|
|
|
.NB-iphone .NB-button div {
|
2012-12-11 17:53:17 -08:00
|
|
|
padding: 0px 5px 0px;
|
2012-07-29 22:44:28 -07:00
|
|
|
}
|
|
|
|
|
2012-08-13 16:20:23 -07:00
|
|
|
.NB-iphone #story_pane .NB-story-comment .NB-story-comment-content {
|
|
|
|
padding-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
2012-07-27 12:27:13 -07:00
|
|
|
.NB-button.NB-share-button div {
|
2012-08-08 19:31:33 -07:00
|
|
|
padding: 8px 0px 8px;
|
2013-03-05 12:26:37 -08:00
|
|
|
border-radius: 2px;
|
2012-08-08 12:02:54 -07:00
|
|
|
text-align: center;
|
2012-07-27 12:27:13 -07:00
|
|
|
}
|
|
|
|
|
2012-12-27 23:04:25 -08:00
|
|
|
.NB-button.NB-share-button .NB-icon {
|
2020-09-28 12:28:03 -04:00
|
|
|
background: url("share@2x.png") no-repeat 0 0;
|
2013-03-05 12:26:37 -08:00
|
|
|
background-size: 16px;
|
|
|
|
width: 25px;
|
2012-08-08 13:48:10 -07:00
|
|
|
display: inline-block;
|
|
|
|
height: 16px;
|
2013-03-05 12:26:37 -08:00
|
|
|
margin: 0 2px 0 -12px;
|
|
|
|
vertical-align: text-bottom;
|
2014-05-20 18:43:37 -07:00
|
|
|
opacity: .7;
|
2012-12-27 23:04:25 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-button.NB-train-button .NB-icon {
|
2020-09-28 12:28:03 -04:00
|
|
|
background: url("train@2x.png") no-repeat 0 0;
|
2014-05-20 18:43:37 -07:00
|
|
|
background-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-button.NB-save-button .NB-icon {
|
2020-09-28 12:28:03 -04:00
|
|
|
background: url("clock@2x.png") no-repeat 0 0;
|
2013-03-05 12:26:37 -08:00
|
|
|
background-size: 16px;
|
2012-08-08 13:48:10 -07:00
|
|
|
}
|
|
|
|
|
2014-05-21 13:21:40 -07:00
|
|
|
.NB-iphone .NB-button.NB-share-button .NB-icon {
|
|
|
|
background-position-y: 1px;
|
|
|
|
width: 20px;
|
|
|
|
margin-left: -2px;
|
|
|
|
}
|
|
|
|
|
2012-08-08 13:48:10 -07:00
|
|
|
.NB-iphone .NB-button .NB-story-comment-like-button-wrapper,
|
|
|
|
.NB-button .NB-story-comment-like-button-wrapper {
|
|
|
|
position: relative;
|
2012-12-11 17:53:17 -08:00
|
|
|
overflow: hidden;
|
2012-08-08 13:48:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.NB-button .NB-story-comment-like-button-wrapper span {
|
2013-03-13 14:05:58 -07:00
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAuIwAALiMBeKU/dgAAABV0RVh0Q3JlYXRpb24gVGltZQAzLzEzLzEzh0DecgAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAGLSURBVFiFxZjReYJAEIQXv7zHDkIHMR1QgiVQgh1YAiWYDrSDpAPsIHagHfx54EwQ7rhjF2Re+D7cG4YZuF0UmQjABlhPxWcCkNNgZ+VaTSFIRIrOcVkAJ/6xfGw8YmvhMkfmEbCsIOk/NyZBZgAX+tho+UwOuQu/eX5Su2SNrAicXyY24OyJ645cw6l2yO037wMlhYbXElkslufG1tmdvdDwvjjrNU2xiBUAnyJyGUOauVe3VgiaBassy84i8iEi54W13KSdFLAGqthzMRNqQtsEUADXJ4rZR72jces4s5AfxvY8oGQetyq0gxzNvPw1kZArxgGuLWxvFHNk6vEWuBkEJTmT3Msc4av6bhKb7ZjmmkQ4gGmbLf5RdSyir3mSQ4RH1bEoYwWpkUWJJK2rF4nXGwbDoypA5eq2xDfS3ComHyDvbXSuvh5YY/tDAtgFiMMdulkXmhxsYw7w7SGtEteGIlT3sXUsogQOX4SlVlDZiUj1iexu7NDiOmkF3b8sDmqbH/n+xplQzS92BumDvmMUPAAAAABJRU5ErkJggg==") no-repeat center 2px;
|
|
|
|
background-size: 11px;
|
2012-08-08 13:48:10 -07:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2012-12-11 17:53:17 -08:00
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
margin: 0 6px;
|
2012-06-14 16:30:37 -07:00
|
|
|
}
|
|
|
|
|
2013-02-19 14:18:41 -08:00
|
|
|
/* Story Comments */
|
|
|
|
|
|
|
|
.NB-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment {
|
2013-03-05 12:26:37 -08:00
|
|
|
border-bottom: 1px solid #EAECE8;
|
|
|
|
background:#FAFBF8;
|
2013-02-19 14:18:41 -08:00
|
|
|
position: relative;
|
|
|
|
padding: 0 12px 2px 64px;
|
|
|
|
line-height: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
min-height: 72px;
|
|
|
|
}
|
2015-09-08 14:17:01 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-story-comment {
|
|
|
|
min-height: inherit;
|
|
|
|
}
|
2013-03-05 12:26:37 -08:00
|
|
|
#story_pane .NB-story-comment:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2013-02-19 14:18:41 -08:00
|
|
|
.NB-header,
|
|
|
|
#NB-share-bar-wrapper {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story-share-profiles-comments-friends,
|
|
|
|
.NB-story-share-profiles-comments-public {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-story-share-profiles-shares-friends,
|
|
|
|
.NB-story-share-profiles-shares-public {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment .NB-user-avatar {
|
|
|
|
position: absolute;
|
|
|
|
left: 6px;
|
|
|
|
top: 8px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-user-avatar.NB-story-comment-reshare {
|
|
|
|
top: 22px;
|
|
|
|
left: 6px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-user-avatar img {
|
|
|
|
border-radius: 6px;
|
|
|
|
margin: 0;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-user-avatar.NB-story-comment-reshare img {
|
|
|
|
height: 36px;
|
|
|
|
width: 36px;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-user-avatar {
|
2015-09-08 14:17:01 -07:00
|
|
|
left: 12px;
|
|
|
|
top: 14px;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-user-avatar.NB-story-comment-reshare {
|
|
|
|
left: 18px;
|
2015-09-08 14:17:01 -07:00
|
|
|
top: 10px;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-user-avatar img,
|
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-user-avatar.NB-story-comment-reshare img {
|
2015-09-08 14:17:01 -07:00
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-story-share-profile .NB-user-avatar img {
|
2015-09-08 14:21:33 -07:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-user-avatar.NB-story-comment-reshare img {
|
2015-09-08 14:17:01 -07:00
|
|
|
margin-left: 0;
|
2015-09-08 14:21:33 -07:00
|
|
|
margin-top: 12px;
|
2015-09-08 14:17:01 -07:00
|
|
|
}
|
2013-02-19 14:18:41 -08:00
|
|
|
#story_pane .NB-story-comment .NB-story-comment-author-container {
|
|
|
|
padding: 8px 0 0;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-story-comment-author-container {
|
2015-09-08 14:17:01 -07:00
|
|
|
padding-top: 10px;
|
|
|
|
}
|
2013-02-19 14:18:41 -08:00
|
|
|
#story_pane .NB-story-comment .NB-story-comment-reshares {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 8px;
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-reshares .NB-user-avatar {
|
|
|
|
top: 8px;
|
|
|
|
left: 26px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-username {
|
|
|
|
float: left;
|
|
|
|
font-size: 11px;
|
|
|
|
color: #1D4BA6;
|
|
|
|
font-weight: bold;
|
2013-03-05 12:26:37 -08:00
|
|
|
margin: 0 10px 0 0;
|
2013-02-19 14:18:41 -08:00
|
|
|
text-shadow: 0 -1px 0 #F0F0F0;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: 17px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-date {
|
|
|
|
font-size: 10px;
|
|
|
|
color: #9D9D9D;
|
2013-03-05 12:26:37 -08:00
|
|
|
float: left;
|
2013-02-19 14:18:41 -08:00
|
|
|
line-height: 17px;
|
|
|
|
margin: 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-likes {
|
|
|
|
float: right;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-likes-icon {
|
|
|
|
float: right;
|
2013-03-13 14:05:58 -07:00
|
|
|
background: transparent url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAACe0lEQVRYCe1Wv2sUQRT+3t0RDBFsDguNaJHGQoWYnIiNogj+thCsBEvFxk7/ChEsFG2EENE/QlsR3YAEtbCLBhU0jQQlcDd+bzeRkd2debu3xSFZmLt333vzvu/em5kdcc5hlJ7WKIlRLZuCYh35DyuUyC0kcjv2z63+Jip0mWSXrISxOBlq27+SSXSwlJJ0sAsH3HKMMOYfrkIdnCWBpGMNp2NkFv9wgpAKynhaOGMhjMXUb9lLGccYfpBgfJ1kFT/RxVH3O0Ya8tevUAcnPDHKMYGtOBYis/jqC2p77dpgaqBtNQWJwBWsmSJsQ6zxu56gBUwz/84Cjj08JPcV4GYov6gT+cbZ280Z6gV+wUG3o2hqvkJ9nGTgYlFwQ9gi+jhVlisvqOfecvv2OOEOR5O3t0GaU3MrR8mTb5kf+FqO88b0mNCkD9ewP/E8v4pp9yI2N18hf8ase87Dbz+TPfPhivY82sxhEKN5wxXymd/IFQq7R2ibDwfsFTb8Bmbc00BMzhWukB8+4+b484EPBW0VX1GM5rMLytjtL1CHc0HBJU57yxZkii34WJKnDN7N82apzFmE2yvkcKEoQQS7GPHn3HZBgvO52QoIHnE8LPQBlQXZWpZIl4RfOdoe8SpbeJ0LVxc7kO3C+7Qm0t/ZRx9rfA0ddiseFjRtFRqkC9QX8wEDHPorRilUmGKC9x5jm+dYpcVtE9T6p11PeEfsYda984gzU7EtFAXMe75Kay/esuyq+p0EWqGb3DW2syiRa4y/y6Ft67Jtv2hHn3iFxrCXWT6zFUfMYpRWhescwTLbNhVVsh4Qr5A1U0Nx8Qo1RGRNsykoVqmRq9Af7+GQyu+uxIIAAAAASUVORK5CYII=") no-repeat center center;
|
|
|
|
background-size: 16px;
|
2013-02-19 14:18:41 -08:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
display: block;
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-likes-user {
|
|
|
|
float: right;
|
|
|
|
margin: 2px 2px 0 0;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-likes-user .NB-user-avatar {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-likes-user img {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
border-radius: 2px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-location {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 10px;
|
2013-03-05 12:26:37 -08:00
|
|
|
color: rgba(0, 0, 0, .2);
|
2013-02-19 14:18:41 -08:00
|
|
|
font-weight: bold;
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
|
|
|
margin: 3px 0 6px;
|
|
|
|
line-height: 12px;
|
|
|
|
}
|
2015-09-16 20:24:11 -07:00
|
|
|
#story_pane .NB-story-comment-friend-shares .NB-story-comment-location {
|
2015-09-08 14:17:01 -07:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
2013-02-19 14:18:41 -08:00
|
|
|
#story_pane .NB-story-comment .NB-button-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
float: right;
|
2013-03-05 12:26:37 -08:00
|
|
|
margin-top: -2px;
|
2013-02-19 14:18:41 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-content {
|
|
|
|
float: left;
|
|
|
|
color: #303030;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment-reply {
|
2013-03-05 12:26:37 -08:00
|
|
|
border-top: 1px solid #EAECE8;
|
2013-02-19 14:18:41 -08:00
|
|
|
overflow: hidden;
|
|
|
|
clear: both;
|
|
|
|
position: relative;
|
2015-09-16 20:41:06 -07:00
|
|
|
padding: 8px 0 4px 34px;
|
2013-02-19 14:18:41 -08:00
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment-reply .NB-story-comment-reply-photo {
|
2015-09-16 20:41:06 -07:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2013-02-19 14:18:41 -08:00
|
|
|
border-radius: 3px;
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment-reply-content {
|
|
|
|
clear: both;
|
|
|
|
color: #303030;
|
|
|
|
padding: 2px 0 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comment-reply-form {
|
|
|
|
padding-top: 11px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment-reply-form .NB-story-comment-reply-username {
|
|
|
|
margin: 1px 8px 6px 0;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment-reply-form .NB-story-comment-reply-comments {
|
|
|
|
margin: 0 8px 4px 0;
|
|
|
|
width: 62%;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment-reply-form .NB-modal-submit-button {
|
|
|
|
float: left;
|
|
|
|
font-size: 10px;
|
|
|
|
padding: 2px 8px;
|
|
|
|
line-height: 16px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment-reply-form .NB-error {
|
|
|
|
font-size: 10px;
|
|
|
|
color: #6A1000;
|
|
|
|
padding: 4px 0 0;
|
|
|
|
line-height: 14px;
|
|
|
|
font-weight: bold;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comments-public-teaser-wrapper,
|
2013-03-05 12:26:37 -08:00
|
|
|
#story_pane .NB-story-comments-public-header-wrapper,
|
2015-09-07 21:39:51 -07:00
|
|
|
#story_pane .NB-story-comments-friends-header-wrapper,
|
|
|
|
#story_pane .NB-story-comments-friend-shares-header-wrapper {
|
2013-03-05 12:26:37 -08:00
|
|
|
clear: both;
|
2013-02-19 14:18:41 -08:00
|
|
|
}
|
|
|
|
#story_pane .NB-story-comments-shares-teaser-wrapper {
|
|
|
|
border-top: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comments-public-teaser,
|
2013-03-05 12:26:37 -08:00
|
|
|
#story_pane .NB-story-comments-public-header,
|
|
|
|
#story_pane .NB-story-comments-friends-header {
|
2013-02-19 14:18:41 -08:00
|
|
|
background-color: #B1B6B4;
|
|
|
|
color: white;
|
|
|
|
text-shadow: 0 1px 0 #505050;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 10px;
|
|
|
|
overflow: hidden;
|
2013-03-05 12:26:37 -08:00
|
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#F5F6F2), to(#E5E6E0));
|
|
|
|
padding: 6px 12px 6px;
|
2013-02-19 14:18:41 -08:00
|
|
|
color: #404040;
|
|
|
|
text-shadow: 0 1px 0 white;
|
2013-03-05 12:26:37 -08:00
|
|
|
border: 1px solid transparent;
|
2016-02-17 19:10:38 -08:00
|
|
|
border-color: #E0E0E0 transparent #D0D0D0;
|
2013-02-19 14:18:41 -08:00
|
|
|
}
|
2016-02-17 19:10:38 -08:00
|
|
|
|
2013-02-19 14:18:41 -08:00
|
|
|
#story_pane .NB-story-comments-shares-teaser {
|
|
|
|
background-color: #F5F5EF;
|
|
|
|
color: #898989;
|
2013-02-19 17:55:01 -08:00
|
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
|
2013-02-19 14:18:41 -08:00
|
|
|
font-weight: normal;
|
|
|
|
font-size: 10px;
|
2013-02-19 17:55:01 -08:00
|
|
|
padding: 8px 12px 0px 12px;
|
2013-02-19 14:18:41 -08:00
|
|
|
overflow: hidden;
|
|
|
|
min-height: 27px;
|
2013-02-19 17:55:01 -08:00
|
|
|
line-height: 21px;
|
2013-02-19 14:18:41 -08:00
|
|
|
border-bottom: 1px solid #E3E3DF;
|
|
|
|
-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, .1);
|
|
|
|
-webkit-transition: all .12s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-comments-public-teaser b {
|
|
|
|
padding: 0 1px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-share-profiles {
|
|
|
|
float: left;
|
|
|
|
vertical-align: top;
|
|
|
|
min-height: 24px;
|
|
|
|
padding-top: 2px;
|
|
|
|
margin-top: -4px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-share-profiles.NB-story-share-profiles-public {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-share-profiles.NB-story-share-profiles-public .NB-story-share-profile {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-share-profile {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-share-profile .NB-user-avatar {
|
|
|
|
float: left;
|
|
|
|
font-size: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 22px;
|
|
|
|
width: 22px;
|
2016-01-21 14:01:25 -08:00
|
|
|
margin: 0 4px 0 0;
|
2013-02-19 14:18:41 -08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-share-profile .NB-public-user {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-story-share-profile .NB-user-avatar img {
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-share-profile .NB-user-username {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
#story_pane .NB-story-comment .NB-story-comment-content {
|
|
|
|
clear: both;
|
|
|
|
padding: 2px 0 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-feed-stories .NB-feed-story {
|
|
|
|
margin: 0;
|
|
|
|
clear: both;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .NB-feed-stories.NB-feed-view-story .NB-feed-story {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#story_pane .audiojs audio {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:11:37 -08:00
|
|
|
.NB-premium-only .NB-story {
|
|
|
|
max-height: 500px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-text-view-premium-only {
|
|
|
|
display: none;
|
|
|
|
border-top: 1px solid #C0C0C0;
|
|
|
|
font-size: 13px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 12px 0;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: -32px 0 0;
|
|
|
|
background-color: white;
|
|
|
|
cursor: default;
|
|
|
|
max-width: 700px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-premium-only .NB-text-view-premium-only {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NB-text-view-premium-only .NB-feed-story-premium-only-divider {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 50px;
|
|
|
|
background: transparent url('white_fade.png') repeat-x 0 0;
|
|
|
|
top: -51px;
|
|
|
|
left: 0;
|
|
|
|
background-size: 25px 50px;
|
|
|
|
}
|
|
|
|
|
2013-02-19 14:18:41 -08:00
|
|
|
|