Advertisement
Guest User

sport.ru clear userstyle

a guest
Dec 24th, 2017
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 10.02 KB | None | 0 0
  1. .comments, /*убираем все комментарии*/
  2. .comment-count, /*и упоминание о них*/
  3. .likes, .social-share, /*лайкошерилки*/
  4. .social-links, /*Новости Sports.ru в соцсетях*/
  5. .main-menu_type_first, /* метаменю: матч-центры, трансферы, блоги, фентези, прогнозы и т.д.*/
  6. .main-header__promo-block, /* мобильные приложения */
  7. .user-panel, /* верхняя панель пользователя*/
  8. .favourite-team, /* Новости моей команды */
  9. .accordion__icon-status, /* плюсы-минусы у разворачивающихся меню*/
  10. .link-arrow-right:after, /* стрелки у ссылок типа Вчерашние матчи*/
  11. .teaser-event__status span[title], /* название каналов в списках матчей*/
  12. .video-other-list__gallery-video-title span:last-child:before, /* вертикальный разделитель у видео*/
  13. .teaser-event:nth-child(2n+2):before, /* вертикальный разделитель в матчах */
  14. .blog-post__header-social,
  15. .b-plista,
  16. .voting__voice,
  17. .news-item__moderator-head,
  18. .key-tags__social-link,
  19. .subscribe-feed[data-state=enabled],
  20. .material-item__author-title,
  21. .material-item__author-item_no-subscribe .material-item__author-item-subscribe,
  22. .news-item__comments-link,
  23. .main-menu__item:last-child:after /* вертикальный разделитель у последнего пункта меню */
  24. {
  25.     display: none;
  26. }
  27.  
  28.  
  29. /* ссылки на спецпроекты и прочий внутренний маркетинг*/
  30. a[href^="http://bit.ly/"], a[href^="https://trbna.co/"]{
  31.     display: none;
  32. }
  33.  
  34. /* выделяющий текст курсор по умолчанию убираем*/
  35. /* фон светлее у страницы */
  36. body{
  37.     cursor: default;
  38.     background: #f5f5f5;
  39. }
  40.  
  41. .page-layout{
  42.     max-width: none;
  43. }
  44.  
  45. .main-header {
  46.     width: 100vw;
  47. }
  48.  
  49. /* горизонтальные линейки после зеленых заголовков и не только*/
  50. hr{
  51.     opacity:0;
  52. }
  53.  
  54. /* зеленые подзаголовочки*/
  55. .h3, h3 {
  56.     font-size: 10px;
  57.     letter-spacing: 2px;
  58. }
  59.    
  60. /* материал в центральной колонке */
  61. .material-list__item{
  62.     border: none !important;
  63.     padding: 10px 0 0 0;
  64. }
  65.  
  66. /* картинка переезжает налево*/
  67. .material-list__item-img-link_float_right {
  68.     float: left;
  69.     margin: 0 20px 50px 0;
  70. }
  71.    
  72. /* время у этого блока*/
  73. .material-list__item>.time-block{
  74.     margin:0;
  75. }
  76.  
  77. /* заголвок материала*/
  78. .material-list__item>h2{
  79.     margin-top: 0;
  80. }
  81.  
  82.  
  83. /* блок статистики справа*/
  84. .gadget *{
  85.     border: none !important;
  86. }
  87.  
  88.  
  89. /* выделение ховернутых ссылок подчеркиванием — глупость*/
  90. a:hover, a:active, a:focus{
  91.     opacity:0.7;
  92.     text-decoration: none !important;
  93. }
  94.  
  95. /* заголовки материалов в центральной колонке */
  96. .h2, h2 {
  97.     margin-top:0;
  98.     font-weight: 500;
  99. }
  100.  
  101. /* видео дня */
  102. .video-block{
  103.     margin:0;
  104. }
  105.  
  106. /* линейки у боковых блоков*/
  107. .aside-news-block hr{
  108.     margin-bottom:0;
  109. }
  110.  
  111.  
  112. /* темные выпадайке слева в статистике */
  113. .accordion__handle_dark {
  114.     color: #222;
  115.     background-color: #f3f3ef;
  116.     text-align: center;
  117. }
  118.  
  119.  
  120.  
  121.  
  122. /* поле поиска */
  123. .search-block__input {
  124.     color: #fff;
  125.     background-color: black;
  126.     border: 1px solid rgba(216, 216, 216, 0.35);
  127.     border-radius: 4px;
  128. }
  129.  
  130. /* меню с видами спорта*/
  131. .main-header>.main-menu_type_second{
  132.     border: none;
  133.     z-index:500;
  134. }
  135.  
  136. /* пункты меню без обводки*/
  137. .main-menu__item{
  138.     border: none !important;
  139. }
  140.  
  141. /* в списках новостй слева забледнять посещенные*/
  142. .aside-news-list a:visited, .columns-layout__main a:visited{
  143.     color: rgb(162, 162, 162) !important;
  144. }
  145.  
  146. /* размеры разных выпадающих менюх*/
  147. .main-sub-menu__item{
  148.     margin-bottom:0;
  149.     width: 120px;
  150. }
  151.  
  152. .main-sub-menu_column-count_5 .main-sub-menu__item{
  153.     width: 140px;
  154. }
  155.  
  156. .main-sub-menu_column-count_3 {
  157.     width: 360px;
  158. }
  159.  
  160. .main-sub-menu_column-count_2 {
  161.     width: 240px;
  162. }
  163.  
  164. /* вертикальные разделители */
  165. .separator {
  166.     opacity: 0;
  167.     padding-left: 3px;
  168.     margin-left: 3px;
  169. }
  170.  
  171. .title-list__item{
  172.     border: none;
  173. }
  174.  
  175. .title-list__item-image, .title-list__item-title {
  176.     padding: 10px 10px 10px 0;
  177. }
  178.  
  179. .title-list__item-image {
  180.     background: none;
  181. }
  182.  
  183. /*в центральной выключке нет необходимости*/
  184. .text-center{
  185.     text-align:left;
  186. }
  187.  
  188. .text-right{
  189.     text-align: left;
  190. }
  191.  
  192. /* уже неактуально — раньше тут исправляли лого сайта плохого качества*/
  193. .main-header__logo {
  194.     background: none !important;
  195.     width: auto;
  196.     height: auto;
  197.     display: inline-block;
  198.     text-indent: 0;
  199.     color: white;
  200.     font-size: 27px;
  201.     font-weight: bold;
  202.     margin-left:10px;
  203. }
  204.  
  205. .main-header__logo:hover {
  206.     color: white;
  207. }
  208.  
  209. .material-item h3{
  210.     letter-spacing: 0;
  211. }
  212.  
  213. /* главная новость*/
  214. .super-top__text-block-wrapper{
  215.     text-align: left;
  216.     z-index:20;
  217.     background: none;
  218.     padding: 10px 0 0 10px;
  219.     width: auto;
  220.     height: auto;
  221.     text-shadow: 2px 2px 29px #000000;
  222. }
  223.  
  224. .super-top__text-block{
  225.     vertical-align: top;
  226.     height: auto;
  227.     width: 450px;
  228. }
  229.  
  230. .super-top__title{
  231.     font-size: 36px;
  232.     font-weight: 500;
  233. }
  234.  
  235. .super-top::after {
  236.     background: linear-gradient(to left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 70%);
  237.     content: '';
  238.     display: block;
  239.     width: 60%;
  240.     height: 100%;
  241.     position: absolute;
  242.     top: 0;
  243.     z-index: 4;
  244.     pointer-events: none;
  245.  
  246. }
  247.  
  248. .super-top__text-block-overflow{
  249.     height: auto;
  250. }
  251.  
  252.  
  253.  
  254. /* блок с букмекерами*/
  255. .b-bets{
  256.     margin-bottom:0;
  257. }
  258.  
  259.  
  260.  
  261.  
  262. /* новость в блоке слева*/
  263. .aside-news-block .link {
  264.     padding: 1px 0;
  265. }
  266.  
  267. /* таблица справа со статистикой*/
  268. .gadget-table {
  269.     width: auto;
  270.     background: none;
  271. }
  272.  
  273. /* время новости*/
  274. .time-block::after {
  275.     content: '';
  276.     display: block;
  277. }
  278.  
  279. .time-block {
  280.     color: #a9a9a9;
  281. }
  282.  
  283. /* вид спорта у новости*/
  284. .aside-news-list__item-sport{
  285.     display: inline;
  286. }
  287.  
  288. /* без обводки в конце*/
  289. .aside-news-list{
  290.     border: none;
  291. }
  292.  
  293. /* вертикальная линию - отбивка у опроса*/
  294. .poll-indicators__count:after{
  295.     border: none;
  296. }
  297.  
  298. .blog-post__header{
  299.     border: none;
  300. }
  301.  
  302. /* блоки справа: статистика, опросы*/
  303. .columns-layout__right section {
  304.     margin-bottom: 50px;
  305. }
  306.  
  307.  
  308. /* заголовок блока подвала*/
  309. .main-footer__list-title {
  310.     margin-bottom: 10px;
  311. }
  312.  
  313.  
  314. .news-item__footer > p{
  315.     font-size: 0;
  316. }
  317.  
  318.  
  319. .news-item__footer > p a{
  320.     font-size: 13px;
  321.     margin-right: 4px;
  322. }
  323.  
  324.  
  325.  
  326. /* блок лучшего в блогах*/
  327. .material-list__item_padding-top_30 {
  328.     padding: 30px 0 0;
  329. }
  330.  
  331. .blog-posts__post-title{
  332.     position: relative;
  333.     left: 105px;
  334. }
  335.  
  336. .blog-posts__post-image {
  337.     position: relative;
  338.     left: -305px;
  339. }
  340.  
  341. a.blog-posts__post-rating {
  342.     position: relative;
  343.     left: -417px;
  344. }
  345.  
  346. .blog-posts__list-item{
  347.     border-top: none;
  348. }
  349.  
  350.  
  351.  
  352.  
  353.  
  354. /* табы - переключалки */
  355. .tabs__header-tab {
  356.     font-size: 10px;
  357.     letter-spacing: 2px;
  358.     text-transform: uppercase;
  359. }
  360.  
  361. .tabs_state_horizontal .tabs__header-pointer {
  362.     background: #00aa32;
  363.     height: 3px;
  364. }
  365.  
  366. .tabs_state_horizontal .tabs__header {
  367.     border-bottom: 1px solid #e8e8e8;
  368. }
  369.  
  370. /* блоки слева*/
  371. .columns-layout__left section {
  372.     margin-bottom: 35px;
  373. }
  374.  
  375. /* пункт в главном меню*/
  376. .main-menu__link {
  377.     font-weight: 500;
  378.     letter-spacing: 0.03em;
  379. }
  380.  
  381. /* выпадайка меню */
  382. .main-sub-menu-wrapper {
  383.     box-shadow: 10px 22px 60px 0px rgba(0,0,0,0.2);
  384.     border: none;
  385. }
  386.  
  387. .main-sub-menu__list{
  388.     background: #fff;
  389.     padding: 5px 0px;
  390. }
  391.  
  392.  
  393.  
  394. /* результаты поиска */
  395. .search-block__results{
  396.     z-index: 600;
  397. }
  398.  
  399.  
  400.  
  401. /* обводки епт*/
  402. .bordered{
  403.     border: none;
  404. }
  405.  
  406. .stat-table TD,
  407. .stat-table THEAD .score-td,
  408. .stat-table .bordR{
  409.     border: none !important;
  410. }
  411.  
  412.  
  413.  
  414.  
  415.  
  416. .gadget-table td, .gadget-table tr{
  417.     border: none !important;
  418. }
  419.  
  420. .key-tags__tag-info-wrapper{
  421.     border: none;
  422.     padding: 10px 0;
  423. }
  424.  
  425. .key-tags{
  426.     border: none;
  427.     margin-top:50px;
  428. }
  429.  
  430.  
  431. .news-item__content table,
  432. .news-item__content td,
  433. .news-item__content tr,
  434. .news-item__content th{
  435.     border: none !important;
  436. }
  437.  
  438. .news-item__social-line,
  439. .material-item__social-line{
  440.     border: none;
  441.     height:auto;
  442.     margin: 0 !important;
  443.     padding: 0;
  444. }
  445.  
  446. .news-item__content td{
  447.     padding: 5px 3px;
  448.     line-height:1.1em;
  449.     vertical-align: top;
  450.     font-size:85%;
  451.     text-align: left !important;
  452.     width: auto !important;
  453.     height: auto !important;    
  454. }
  455.  
  456. .news-item__content tr:first-child td{
  457.     border-bottom: solid 1px #ccc !important;
  458. }
  459.  
  460. .news-item__content tr:hover td{
  461.     background-color: #f8f8f8;
  462. }
  463.  
  464.  
  465. .news-item__content table{
  466.     margin: 10px 0;
  467. }
  468.  
  469.  
  470.  
  471. .news-item__tags-line, .material-item__tags-line{
  472.     font-size: 0;
  473. }
  474.  
  475. .news-item__separator.separator{
  476.     margin:0;
  477.     padding:0;
  478. }
  479.  
  480.  
  481.  
  482. /* Теги новостей пимпочками*/
  483. .news-item__tags-line a, .material-item__tags-line a{
  484.     color: #007ede;
  485.     background-color: #e1f3ff;
  486.     padding: 0 4px;
  487.     border-radius: 3px;
  488.     font-size: 11px;
  489.     white-space: nowrap;
  490.     margin-right: 5px;
  491.     line-height: 1.7em;
  492.     opacity: 0.8;
  493. }
  494.  
  495. .news-item__tags-line a:hover, .material-item__tags-line a:hover{
  496.     opacity:1;
  497. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement