freshrss.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  1. /* STRUCTURE */
  2. .header {
  3. display: table;
  4. width: 100%;
  5. background: #f4f4f4;
  6. table-layout: fixed;
  7. }
  8. .header > .item {
  9. display: table-cell;
  10. padding: 10px 0;
  11. border-bottom: 1px solid #aaa;
  12. vertical-align: middle;
  13. text-align: center;
  14. }
  15. .header > .item.title {
  16. width: 250px;
  17. }
  18. .header > .item.title .logo {
  19. display: inline-block;
  20. padding: 10px;
  21. }
  22. .header > .item.title h1 {
  23. display: inline-block;
  24. margin: 0;
  25. text-shadow: 1px -1px 0 #ccc;
  26. vertical-align: middle;
  27. }
  28. .header > .item.title a:hover {
  29. text-decoration: none;
  30. }
  31. .header > .item.search input {
  32. width: 200px;
  33. transition: width 200ms linear;
  34. }
  35. .header .item.search input:focus {
  36. width: 300px;
  37. }
  38. .header > .item.configure {
  39. width: 100px;
  40. }
  41. #global {
  42. display: table;
  43. width: 100%;
  44. height: 100%;
  45. background: #fafafa;
  46. table-layout: fixed;
  47. }
  48. .aside {
  49. display: table-cell;
  50. height: 100%;
  51. width: 250px;
  52. vertical-align: top;
  53. border-right: 1px solid #aaa;
  54. background: #fff;
  55. }
  56. .aside .nav-form input {
  57. width: 180px;
  58. }
  59. .aside.aside_flux {
  60. padding: 10px 0 40px;
  61. }
  62. .aside.aside_feed .nav-form input {
  63. width: 140px;
  64. }
  65. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  66. right: -20px;
  67. }
  68. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  69. right: 33px;
  70. }
  71. .nav-login {
  72. display: none;
  73. }
  74. .nav_menu {
  75. width: 100%;
  76. background: #fafafa;
  77. border-bottom: 1px solid #aaa;
  78. text-align: center;
  79. padding: 5px 0;
  80. }
  81. .favicon {
  82. height: 16px;
  83. width: 16px;
  84. }
  85. .categories {
  86. margin: 0;
  87. padding: 0;
  88. text-align: center;
  89. list-style: none;
  90. }
  91. .categories .all,
  92. .categories .favorites,
  93. .categories .category {
  94. display: block;
  95. padding: 5px 0;
  96. width: 220px;
  97. margin: 5px auto;
  98. text-align: left;
  99. overflow: hidden;
  100. white-space: nowrap;
  101. text-overflow: ellipsis;
  102. }
  103. .categories .all .btn,
  104. .categories .favorites .btn,
  105. .categories .category .btn:first-child {
  106. width: 195px;
  107. position: relative;
  108. }
  109. .categories .feeds {
  110. width: 100%;
  111. margin: 0;
  112. list-style: none;
  113. }
  114. .categories .feeds .item.active {
  115. background: #0062BE;
  116. }
  117. .categories .feeds .item.active .feed {
  118. color: #fff;
  119. }
  120. .categories .feeds .item.empty .feed {
  121. color: #e67e22;
  122. }
  123. .categories .feeds .item.empty.active {
  124. background: #e67e22;
  125. }
  126. .categories .feeds .item.empty.active .feed {
  127. color: #fff;
  128. }
  129. .categories .feeds .item.error .feed {
  130. color: #BD362F;
  131. }
  132. .categories .feeds .item .feed {
  133. display: inline-block;
  134. margin: 0;
  135. width: 165px;
  136. line-height: 35px;
  137. font-size: 90%;
  138. vertical-align: middle;
  139. text-align: left;
  140. overflow: hidden;
  141. white-space: nowrap;
  142. text-overflow: ellipsis;
  143. }
  144. .categories .feeds .dropdown .dropdown-menu {
  145. left: 0;
  146. }
  147. .categories .feeds .dropdown .dropdown-menu:after {
  148. left: 2px;
  149. }
  150. .categories .feeds .item .dropdown-toggle i {
  151. background-image: none;
  152. }
  153. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle i,
  154. .categories .feeds .item:hover .dropdown-toggle i,
  155. .categories .feeds .item.active .dropdown-toggle i {
  156. background-image: url("icons/configure.png");
  157. background-image: url("icons/configure.svg");
  158. background-color: #fff;
  159. border-radius: 3px;
  160. }
  161. .categories .notRead {
  162. position: absolute;
  163. top: 3px; right: 3px;
  164. padding: 1px 5px;
  165. background: #ccc;
  166. color: #fff;
  167. font-size: 90%;
  168. border: 1px solid #bbb;
  169. border-radius: 5px;
  170. box-shadow: 1px 3px 3px #aaa inset;
  171. text-shadow: 0 0 1px #aaa;
  172. }
  173. .post {
  174. padding: 10px 50px;
  175. }
  176. .post form {
  177. margin: 10px 0;
  178. }
  179. .day {
  180. min-height: 50px;
  181. padding: 0 10px;
  182. font-size: 130%;
  183. font-weight: bold;
  184. line-height: 50px;
  185. background: #fff;
  186. border-top: 1px solid #aaa;
  187. border-bottom: 1px solid #aaa;
  188. }
  189. .day:first-child {
  190. border-top: none;
  191. }
  192. .day .name {
  193. position: absolute;
  194. right: 0;
  195. width: 50%;
  196. height: 1.5em;
  197. padding: 0 10px 0 0;
  198. overflow: hidden;
  199. color: #aab;
  200. font-size: 1.8em;
  201. opacity: .3;
  202. text-shadow: 0px -1px 0px #333;
  203. font-style: italic;
  204. white-space: nowrap;
  205. text-overflow: ellipsis;
  206. text-align: right;
  207. }
  208. .flux {
  209. border-left: 3px solid #aaa;
  210. background: #fafafa;
  211. }
  212. .flux:hover {
  213. background: #fff;
  214. }
  215. .flux.active {
  216. border-left: 3px solid #0062BE;
  217. background: #fff;
  218. }
  219. .flux.not_read {
  220. border-left: 3px solid #FF5300;
  221. background: #FFF3ED;
  222. }
  223. .flux.favorite {
  224. border-left: 3px solid #FFC300;
  225. background: #FFF6DA;
  226. }
  227. .flux_header {
  228. height: 25px;
  229. font-size: 12px;
  230. line-height: 25px;
  231. border-top: 1px solid #ddd;
  232. }
  233. .item.manage {
  234. width: 80px;
  235. white-space: nowrap;
  236. font-size: 0px;
  237. text-align: center;
  238. }
  239. .item.manage .read {
  240. display: inline-block;
  241. width: 40px;
  242. height: 40px;
  243. background: url("icons/read.png") center center no-repeat;
  244. background: url("icons/read.svg") center center no-repeat;
  245. vertical-align: middle;
  246. }
  247. .item.manage .read:hover {
  248. text-decoration: none;
  249. }
  250. .flux.not_read .item.manage .read {
  251. background: url("icons/unread.png") center center no-repeat;
  252. background: url("icons/unread.svg") center center no-repeat;
  253. }
  254. .item.manage .bookmark {
  255. display: inline-block;
  256. width: 40px;
  257. height: 40px;
  258. background: url("icons/non-starred.png") center center no-repeat;
  259. background: url("icons/non-starred.svg") center center no-repeat;
  260. vertical-align: middle;
  261. }
  262. .item.manage .bookmark:hover {
  263. text-decoration: none;
  264. }
  265. .flux.favorite .item.manage .bookmark {
  266. background: url("icons/starred.png") center center no-repeat;
  267. background: url("icons/starred.svg") center center no-repeat;
  268. }
  269. .flux_header .item.website {
  270. width: 200px;
  271. overflow: hidden;
  272. white-space: nowrap;
  273. text-overflow: ellipsis;
  274. line-height: 40px;
  275. }
  276. .flux_header .item.website .favicon {
  277. padding: 5px;
  278. }
  279. .flux_header .item.website a {
  280. display: block;
  281. height: 40px;
  282. }
  283. .flux_header .item.title {
  284. overflow: hidden;
  285. white-space: nowrap;
  286. text-overflow: ellipsis;
  287. cursor: pointer;
  288. }
  289. .flux_header .item.title a {
  290. color: #000;
  291. outline: none;
  292. }
  293. .flux_header .item.title a:hover {
  294. text-decoration: none
  295. }
  296. .flux.not_read .flux_header .item.title {
  297. font-weight: bold;
  298. }
  299. .item.date {
  300. width: 200px;
  301. overflow: hidden;
  302. white-space: nowrap;
  303. text-overflow: ellipsis;
  304. text-align: right;
  305. font-size: 10px;
  306. color: #666;
  307. cursor: pointer;
  308. }
  309. .item.link {
  310. width: 40px;
  311. text-align: center;
  312. }
  313. .item.link a {
  314. display: inline-block;
  315. width: 40px;
  316. height: 40px;
  317. background: url("icons/link.png") center center no-repeat;
  318. background: url("icons/link.svg") center center no-repeat;
  319. vertical-align: middle;
  320. }
  321. .item.link a:hover {
  322. text-decoration: none;
  323. }
  324. #stream.reader .flux {
  325. padding: 0 0 30px;
  326. border: none;
  327. background: #f0f0f0;
  328. color: #333;
  329. }
  330. #stream.reader .flux .author {
  331. margin: 0 0 10px;
  332. font-size: 90%;
  333. color: #666;
  334. }
  335. #stream.global {
  336. text-align: center;
  337. }
  338. #stream.global .category {
  339. display: inline-block;
  340. width: 280px;
  341. margin: 20px 10px;
  342. vertical-align: top;
  343. background: #fff;
  344. border: 1px solid #aaa;
  345. border-radius: 5px;
  346. text-align: left;
  347. box-shadow: 0 0 5px #bbb;
  348. }
  349. #stream.global .cat_header {
  350. height: 35px;
  351. padding: 0 10px;
  352. background: #eee;
  353. border-bottom: 1px solid #aaa;
  354. border-radius: 5px 5px 0 0;
  355. line-height: 35px;
  356. font-size: 120%;
  357. }
  358. #stream.global .cat_header a {
  359. color: #333;
  360. text-shadow: 0 -1px 0px #aaa;
  361. }
  362. #stream.global .category .feeds {
  363. max-height: 250px;
  364. margin: 0;
  365. list-style: none;
  366. overflow: auto;
  367. }
  368. #stream.global .category .feeds .item {
  369. padding: 2px 10px;
  370. font-size: 90%;
  371. }
  372. .content {
  373. min-height: 300px;
  374. max-width: 550px;
  375. margin: 0 auto;
  376. padding: 20px 10px;
  377. line-height: 170%;
  378. word-wrap: break-word;
  379. }
  380. .content .title {
  381. margin: 0 0 5px;
  382. }
  383. .content h1, .content h2, .content h3 {
  384. margin: 20px 0 5px;
  385. }
  386. .content p {
  387. margin: 0 0 20px;
  388. }
  389. .content img.big {
  390. display: block;
  391. margin: 10px auto;
  392. }
  393. .content figure img.big {
  394. margin: 0;
  395. }
  396. .content hr {
  397. margin: 30px 0;
  398. height: 1px;
  399. background: #ddd;
  400. border: 0;
  401. }
  402. .content pre {
  403. margin: 10px auto;
  404. padding: 10px;
  405. overflow: auto;
  406. background: #000;
  407. color: #fff;
  408. font-size: 110%;
  409. }
  410. .content q, .content blockquote {
  411. display: block;
  412. margin: 5px 0;
  413. padding: 5px 20px;
  414. font-style: italic;
  415. border-left: 4px solid #ccc;
  416. color: #666;
  417. }
  418. .content blockquote p {
  419. margin: 0;
  420. }
  421. #panel {
  422. display: none;
  423. position: fixed;
  424. top: 10px; bottom: 10px;
  425. left: 100px; right: 100px;
  426. overflow: auto;
  427. background: #fff;
  428. border: 1px solid #95a5a6;
  429. border-radius: 5px;
  430. }
  431. #panel .close {
  432. position: fixed;
  433. top: 10px; right: 0;
  434. display: inline-block;
  435. width: 26px;
  436. height: 26px;
  437. margin: 0 10px 0 0;
  438. border: 1px solid #ccc;
  439. border-radius: 20px;
  440. text-align: center;
  441. line-height: 26px;
  442. background: #fff;
  443. }
  444. #overlay {
  445. display: none;
  446. position: fixed;
  447. top: 0; bottom: 0;
  448. left: 0; right: 0;
  449. background: rgba(0, 0, 0, 0.9);
  450. }
  451. .flux_content .bottom {
  452. font-size: 90%;
  453. text-align: center;
  454. }
  455. /*** PAGINATION ***/
  456. .pagination {
  457. display: table;
  458. width: 100%;
  459. margin: 0;
  460. background: #fafafa;
  461. text-align: center;
  462. color: #333;
  463. font-size: 80%;
  464. line-height: 200%;
  465. table-layout: fixed;
  466. }
  467. .pagination .item {
  468. display: table-cell;
  469. line-height: 40px;
  470. }
  471. .pagination .item.pager-current {
  472. font-weight: bold;
  473. font-size: 140%;
  474. }
  475. .pagination .item.pager-first,
  476. .pagination .item.pager-previous,
  477. .pagination .item.pager-next,
  478. .pagination .item.pager-last {
  479. width: 100px;
  480. }
  481. .pagination .item a {
  482. display: block;
  483. color: #333;
  484. font-style: italic;
  485. }
  486. .pagination:first-child .item {
  487. border-bottom: 1px solid #aaa;
  488. }
  489. .pagination:last-child .item {
  490. border-top: 1px solid #aaa;
  491. }
  492. .nav_entries {
  493. display: table;
  494. width: 250px;
  495. height: 40px;
  496. position: fixed;
  497. bottom: 0;
  498. left: 0;
  499. margin: 0;
  500. background: #fff;
  501. border-top: 1px solid #ddd;
  502. text-align: center;
  503. line-height: 40px;
  504. table-layout: fixed;
  505. }
  506. .nav_entries .item {
  507. display: table-cell;
  508. width: 30%;
  509. }
  510. .nav_entries .item a {
  511. display: block;
  512. }
  513. .nav_entries .item .icon.i_up {
  514. margin: 5px 0 0;
  515. vertical-align: top;
  516. }
  517. .loading {
  518. background: url("loader.gif") center center no-repeat;
  519. font-size: 0;
  520. }
  521. .bigMarkAsRead {
  522. cursor: pointer;
  523. height: 300px;
  524. text-shadow: 0 -1px 0 #aaa;
  525. }
  526. .bigMarkAsRead:hover {
  527. background: #333;
  528. color: #fff;
  529. }
  530. .bigTick {
  531. font-size: 72pt;
  532. margin: 75px 0 10px 0;
  533. }
  534. /*** NOTIFICATION ***/
  535. .notification {
  536. position: fixed;
  537. top: 10px;
  538. left: 25%; right: 25%;
  539. min-height: 30px;
  540. padding: 10px;
  541. line-height: 30px;
  542. text-align: center;
  543. border-radius: 5px;
  544. box-shadow: 0 0 5px #666;
  545. background: #ddd;
  546. color: #666;
  547. font-weight: bold;
  548. }
  549. .notification.good {
  550. background: #f4f899;
  551. }
  552. .notification.bad {
  553. background: #f4a899;
  554. }
  555. .notification a.close {
  556. display: inline-block;
  557. width: 16px;
  558. height: 16px;
  559. float: right;
  560. margin: -20px -20px 0 0;
  561. padding: 5px;
  562. background: #fff;
  563. border-radius: 50px;
  564. border: 1px solid #aaa;
  565. line-height: 16px;
  566. }
  567. .toggle_aside, .btn.toggle_aside {
  568. display: none;
  569. }
  570. .actualizeProgress {
  571. position: fixed;
  572. top: 10px;
  573. left: 25%; right: 25%;
  574. padding: 5px;
  575. background: #fff;
  576. text-align: center;
  577. border: 1px solid #ddd;
  578. border-radius: 5px;
  579. }
  580. .actualizeProgress progress {
  581. max-width: 100%;
  582. vertical-align: middle;
  583. }
  584. .actualizeProgress .progress {
  585. color: #999;
  586. font-size: 90%;
  587. vertical-align: middle;
  588. }
  589. .logs {
  590. border: 1px solid #aaa;
  591. }
  592. .logs .log {
  593. padding: 5px 2%;
  594. overflow: auto;
  595. background: #fafafa;
  596. border-bottom: 1px solid #999;
  597. color: #333;
  598. font-size: 90%;
  599. }
  600. .logs .log .date {
  601. display: block;
  602. }
  603. .logs .log.error {
  604. background: #fdd;
  605. color: #844;
  606. }
  607. .logs .log.warning {
  608. background: #ffe;
  609. color: #c95;
  610. }
  611. .logs .log.notice {
  612. background: #f4f4f4;
  613. color: #aaa;
  614. }
  615. @media(max-width: 840px) {
  616. .header,
  617. .aside .btn-important,
  618. .aside .feeds .dropdown,
  619. .flux_header .item.website span,
  620. .item.date {
  621. display: none;
  622. }
  623. .flux_header .item.website {
  624. width: 40px;
  625. text-align: center;
  626. }
  627. .flux_header .item.website .favicon {
  628. padding: 12px;
  629. }
  630. .nav-login {
  631. display: block;
  632. }
  633. .content {
  634. font-size: 120%;
  635. }
  636. .pagination {
  637. margin: 0 0 40px;
  638. }
  639. .pagination .pager-previous, .pagination .pager-next {
  640. width: 100px;
  641. }
  642. .toggle_aside, .btn.toggle_aside {
  643. display: inline-block;
  644. }
  645. .aside {
  646. position: fixed;
  647. top: 0; left: 0;
  648. width: 0;
  649. overflow: hidden;
  650. border-right: none;
  651. z-index: 10;
  652. transition: width 200ms linear;
  653. }
  654. .aside.aside_flux {
  655. padding: 10px 0 0;
  656. }
  657. .aside:target {
  658. width: 80%;
  659. border-right: 1px solid #aaa;
  660. overflow: auto;
  661. }
  662. .aside .toggle_aside {
  663. position: absolute;
  664. right: 0;
  665. display: inline-block;
  666. width: 26px;
  667. height: 26px;
  668. margin: 0 10px 0 0;
  669. border: 1px solid #ccc;
  670. border-radius: 20px;
  671. text-align: center;
  672. line-height: 26px;
  673. }
  674. .aside .categories {
  675. margin: 30px 0;
  676. }
  677. .nav_entries {
  678. width: 100%;
  679. }
  680. .nav_menu .btn {
  681. margin: 5px 10px;
  682. }
  683. .nav_menu .stick {
  684. margin: 0 10px;
  685. }
  686. .nav_menu .stick .btn {
  687. margin: 5px 0;
  688. }
  689. #panel {
  690. left: 5px; right: 5px;
  691. }
  692. .day .date {
  693. display: none;
  694. }
  695. .day .name {
  696. height: 2.6em;
  697. font-size: 1em;
  698. text-shadow: none;
  699. }
  700. .notification,
  701. .actualizeProgress {
  702. left: 10px;
  703. right: 10px;
  704. }
  705. }
  706. /*** FALLBACK ***/
  707. .btn {
  708. background: #fff;
  709. background: -moz-linear-gradient(top, #fff 0%, #eee 100%);
  710. background: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
  711. background: -o-linear-gradient(top, #fff 0%, #eee 100%);
  712. background: -ms-linear-gradient(top, #fff 0%, #eee 100%);
  713. }
  714. .btn:hover {
  715. background: #f0f0f0;
  716. background: -moz-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  717. background: -webkit-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  718. background: -o-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  719. background: -ms-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  720. }
  721. .btn.btn-important {
  722. background: #0084CC;
  723. background: -moz-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  724. background: -webkit-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  725. background: -o-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  726. background: -ms-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  727. }
  728. .btn.btn-important:hover {
  729. background: -moz-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  730. background: -webkit-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  731. background: -o-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  732. background: -ms-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  733. }
  734. .btn.btn-attention {
  735. background: #E95B57;
  736. background: -moz-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  737. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  738. background: -o-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  739. background: -ms-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  740. }
  741. .btn.btn-attention:hover {
  742. background: -moz-linear-gradient(top, #D14641 0%, #BD362F 100%);
  743. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  744. background: -o-linear-gradient(top, #D14641 0%, #BD362F 100%);
  745. background: -ms-linear-gradient(top, #D14641 0%, #BD362F 100%);
  746. }
  747. .dropdown .dropdown-menu:after {
  748. -moz-transform: rotate(45deg);
  749. -webkit-transform: rotate(45deg);
  750. -ms-transform: rotate(45deg);
  751. }
  752. .nav-head {
  753. background: #fff;
  754. background: -moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  755. background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  756. background: -o-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  757. background: -ms-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  758. }
  759. .header > .item.search input {
  760. -moz-transition: width 200ms linear;
  761. -webkit-transition: width 200ms linear;
  762. -o-transition: width 200ms linear;
  763. -ms-transition: width 200ms linear;
  764. }
  765. @media(max-width: 840px) {
  766. .aside {
  767. -moz-transition: width 200ms linear;
  768. -webkit-transition: width 200ms linear;
  769. -o-transition: width 200ms linear;
  770. -ms-transition: width 200ms linear;
  771. }
  772. }