styles.scss 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  1. /**
  2. * Primary Drupal Styles
  3. * Author: Bachir Soussi Chiadmi
  4. */
  5. body{
  6. font-size:16px;
  7. font-family: "aileron", Arial, "MS Trebuchet", sans-serif;
  8. }
  9. // a{color: #007BC2; text-decoration: none;}
  10. h1{font-size:1.6em;}
  11. h2{font-size:1.5em;}
  12. h3{font-size:1.4em;}
  13. h4{font-size:1.3em;}
  14. h5{font-size:1.2em;}
  15. h6{font-size:1.1em;}
  16. input{font-family: Arial, "MS Trebuchet", sans-serif; font-size:0.8em;}
  17. // __
  18. // _________ / /___ __________
  19. // / ___/ __ \/ / __ \/ ___/ ___/
  20. // / /__/ /_/ / / /_/ / / (__ )
  21. // \___/\____/_/\____/_/ /____/
  22. $vert : #20c498;
  23. // $bleu : #1f04a1;
  24. // $rouge : #fb3f08;
  25. $coul0 : #2f82ff;
  26. $coul1 : #ff0000;
  27. $coul2 : #88aa00;
  28. $coul3 : #ff6600;
  29. $coul4 : #ff2ad4;
  30. $coul5 : #8800aa;
  31. /** layout */
  32. .footer-block .region, .header-block{ display:inline-block; vertical-align: top;}
  33. #header, #main, #footer{ padding:0; }
  34. body{
  35. }
  36. @mixin main_centred(){
  37. width:1024px; margin:0 auto;
  38. }
  39. #container{
  40. width:1024px; margin:0 auto;
  41. // overflow-x: visible;
  42. }
  43. $header_height:400px;
  44. #header{
  45. position: fixed;
  46. width:100%; max-height: $header_height;
  47. z-index: 20;
  48. background-color: transparentize(#fff, 0.1);
  49. hgroup.logo{
  50. @include main_centred();
  51. padding: 1em 0;
  52. }
  53. h1{margin:0;}
  54. h1 a{
  55. display:block;
  56. height:335px;
  57. // transition: height 0.1s ease-in-out;
  58. background-image: url(../../images/logo.png);
  59. background-size: contain;
  60. background-position: center;
  61. background-repeat: no-repeat;
  62. text-indent: -2000px;
  63. overflow: hidden;
  64. margin: 0;
  65. }
  66. h2{
  67. text-align: center;
  68. color:$vert;
  69. }
  70. }
  71. #main{
  72. padding-top: $header_height;
  73. >.region{
  74. @include main_centred();
  75. }
  76. }
  77. // about
  78. #node-63{
  79. // color:$bleu;
  80. padding:1em 0;
  81. .content{
  82. section{display: inline;}
  83. p{ margin:0;}
  84. }
  85. ul.links{
  86. // display: block;
  87. text-align: right;
  88. margin: 0; padding: 0;
  89. li{margin: 0; padding: 0; display: inline-block;}
  90. a{
  91. color: inherit; text-decoration: none;
  92. font-weight: 500;
  93. }
  94. }
  95. }
  96. #thematique-anchor-links{
  97. padding:1em 0;
  98. ul{
  99. display: flex;
  100. flex-flow: row nowrap;
  101. justify-content: space-between;
  102. padding:0; margin:0;
  103. li{
  104. max-width: 7em;
  105. list-style: none;
  106. padding:0; margin: 0;
  107. a{
  108. // color: $bleu;
  109. text-decoration: none;
  110. font-weight: 600;
  111. display:block;
  112. min-height: 3em;
  113. background-position: center;
  114. background-repeat: no-repeat;
  115. background-size: contain;
  116. span{
  117. display: block;
  118. }
  119. @mixin anchor($bg, $sb_bg, $coul){
  120. background-image: $bg;
  121. color:$coul;
  122. &.en_attente{
  123. // opacity: 0.4;
  124. color:#aaa;//transparentize($coul, 0.8);//saturate(lighten($coul, 40%), 90%);
  125. background-image: $sb_bg;
  126. cursor: default;
  127. }
  128. }
  129. &.node-32{
  130. @include anchor(
  131. url(../../images/menu-fond-theme-0-flat.jpg),
  132. url(../../images/menu-fond-theme-0-flat-nb.jpg),
  133. $coul0);
  134. }
  135. &.node-14{
  136. @include anchor(
  137. url(../../images/menu-fond-theme-1-flat.jpg),
  138. url(../../images/menu-fond-theme-1-flat-nb.jpg),
  139. $coul1);
  140. }
  141. &.node-38{
  142. @include anchor(
  143. url(../../images/menu-fond-theme-2-flat.jpg),
  144. url(../../images/menu-fond-theme-2-flat-nb.jpg),
  145. $coul2);
  146. }
  147. &.node-3{
  148. @include anchor(
  149. url(../../images/menu-fond-theme-3-flat.jpg),
  150. url(../../images/menu-fond-theme-3-flat-nb.jpg),
  151. $coul3);
  152. }
  153. &.node-20{
  154. @include anchor(
  155. url(../../images/menu-fond-theme-4-flat.jpg),
  156. url(../../images/menu-fond-theme-4-flat-nb.jpg),
  157. $coul4);
  158. }
  159. &.node-26{
  160. @include anchor(
  161. url(../../images/menu-fond-theme-5-flat.jpg),
  162. url(../../images/menu-fond-theme-5-flat-nb.jpg),
  163. $coul5);
  164. }
  165. &:hover{
  166. // TODO: anchor link over effect
  167. }
  168. }
  169. }
  170. }
  171. }
  172. //
  173. // html,
  174. // body,
  175. // #container,
  176. // #main,
  177. // #main>.region,
  178. // #block-system-main,
  179. // #block-system-main>.content,
  180. // .node-thematique{
  181. // overflow-x: visible;
  182. // }
  183. @mixin vidlabel(){
  184. font-size: 1em;
  185. font-weight: 600;
  186. padding:0.2em 0.4em;
  187. background-color: rgba(255,255,255,0.9);
  188. display: inline-block;
  189. }
  190. // thematique
  191. .node-thematique{
  192. min-height:766px;
  193. margin-bottom: 10em;
  194. position: relative;
  195. &::before{
  196. position: absolute;
  197. content:" ";
  198. width:110%; height:110%;
  199. top:-5%; left:-5%;
  200. z-index: -1;
  201. background-position: center;
  202. background-size: contain;
  203. background-repeat: no-repeat;
  204. // border: 1px dotted red;
  205. }
  206. @mixin node_thema($bg, $sb_bg, $coul){
  207. &::before{background-image: $bg;}
  208. &.en_attente::before{background-image: $sb_bg;}
  209. &.en_attente{
  210. >h2,
  211. .group-video .field-name-field-description h3,
  212. .group-description .field-name-field-ecouter,
  213. .node-documentair .field-name-field-doc,
  214. .node-documentair .field-name-title-field,
  215. .field-name-field-episodes .field-label,
  216. .node-episode .field-name-title-field{
  217. color: #aaa;//lighten(desaturate($coul, 40%), 20%);
  218. }
  219. }
  220. &:not(.en_attente){
  221. >h2,
  222. .group-video .field-name-field-description h3,
  223. .group-description .field-name-field-ecouter,
  224. .node-documentair .field-name-field-doc,
  225. .node-documentair .field-name-title-field,
  226. .field-name-field-episodes .field-label,
  227. .node-episode .field-name-title-field{color: $coul;}
  228. }
  229. }
  230. &.node-32{
  231. @include node_thema(
  232. url(../../images/fond-theme-0-flat.png),
  233. url(../../images/fond-theme-0-flat-nb.jpg),
  234. $coul0);
  235. }
  236. &.node-14{
  237. @include node_thema(
  238. url(../../images/fond-theme-1-flat.png),
  239. url(../../images/fond-theme-1-flat-nb.jpg),
  240. $coul1);
  241. }
  242. &.node-38{
  243. @include node_thema(
  244. url(../../images/fond-theme-2-flat.png),
  245. url(../../images/fond-theme-2-flat-nb.jpg),
  246. $coul2);
  247. }
  248. &.node-3{
  249. @include node_thema(
  250. url(../../images/fond-theme-3-flat.png),
  251. url(../../images/fond-theme-3-flat-nb.jpg),
  252. $coul3);
  253. }
  254. &.node-20{
  255. @include node_thema(
  256. url(../../images/fond-theme-4-flat.png),
  257. url(../../images/fond-theme-4-flat-nb.jpg),
  258. $coul4);
  259. }
  260. &.node-26{
  261. @include node_thema(
  262. url(../../images/fond-theme-5-flat.png),
  263. url(../../images/fond-theme-5-flat-nb.jpg),
  264. $coul5);
  265. }
  266. >h2{
  267. font-size: 3em;
  268. font-weight: 400;
  269. // padding-left: 0.18em;
  270. position:relative;
  271. span{
  272. position: absolute;
  273. top:-170px;
  274. }
  275. }
  276. .content{
  277. .field-name-field-emvideo img{width: 100%;}
  278. letter-spacing: -0.25em;
  279. >*{letter-spacing: normal;}
  280. $main_w : 69.5%;
  281. $right_w : 30.5%;
  282. $gouttiere: 1.2em;
  283. // _
  284. // ____ ___ ____ _(_)___
  285. // / __ `__ \/ __ `/ / __ \
  286. // / / / / / / /_/ / / / / /
  287. // /_/ /_/ /_/\__,_/_/_/ /_/
  288. article.main{
  289. display: inline-block;
  290. vertical-align: top;
  291. width:$main_w;
  292. overflow: hidden;
  293. .field-name-body{
  294. position: relative; z-index: 3;
  295. >*{padding:0 1em 0 0;}
  296. .summary{
  297. position: relative;
  298. height:5.75em; overflow: hidden;
  299. background-color: #fff;
  300. transition: background-color 0.5 ease-in-out;
  301. p{
  302. font-size: 1.1em;
  303. padding:0.5em 0.5em 0.5em 0;
  304. font-weight: 500;
  305. }
  306. }
  307. .value{
  308. position:absolute;
  309. height:1px; margin-bottom: 0;
  310. transition:height 0.5s ease-in-out;
  311. background-color: #fff;
  312. overflow: hidden;
  313. p{
  314. font-size: 1em; padding: 0.5em;
  315. }
  316. }
  317. &:hover{
  318. .summary{background-color: #fff;}
  319. .value{
  320. height:700px;
  321. }
  322. }
  323. p{padding:0 0 1em; margin: 0;}
  324. } //field-name-body
  325. .group-video{
  326. position: relative;
  327. min-height: 432px;
  328. .field-name-field-emvideo a{ display: block; line-height: 0;}
  329. .group-description{
  330. cursor: pointer; pointer-events: none;
  331. position:absolute; z-index: 2;
  332. top:0; left: 0;
  333. width:100%; height:100%;
  334. .field-name-field-ecouter{
  335. @include vidlabel();
  336. margin:15px;
  337. // transition: background-color 0.3s ease-in-out;
  338. }
  339. .field-name-field-description{
  340. position: absolute;
  341. top:0; left:0;
  342. box-sizing: border-box;
  343. width:80%;
  344. height:70%;
  345. margin:10%;
  346. padding:5%;
  347. opacity: 0;
  348. background-color: rgba(255,255,255,0.9);
  349. transition: opacity 0.3s ease-in-out;
  350. h3{
  351. font-weight: 500; font-size: 2em; margin:0;
  352. }
  353. }
  354. }
  355. &:hover .group-description{
  356. // background-color: rgba(255,255,255,0.9);
  357. // .field-name-field-ecouter{
  358. // background-color: rgba(255,255,255,0);
  359. // }
  360. .field-name-field-description{opacity:1;}
  361. }
  362. }
  363. }
  364. // __
  365. // ____/ /___ __________
  366. // / __ / __ \/ ___/ ___/
  367. // / /_/ / /_/ / /__(__ )
  368. // \__,_/\____/\___/____/
  369. aside.right{
  370. display: inline-block;
  371. vertical-align: top;
  372. width: $right_w;
  373. .field-name-field-eclairages{
  374. padding-left:1em;
  375. .field-item:not(:last-child){
  376. padding-bottom: $gouttiere;
  377. }
  378. }
  379. .node-documentair{
  380. min-height: 160px;
  381. background-color: #fff;
  382. .content{
  383. position: relative;
  384. .group-txt{
  385. cursor: pointer; pointer-events: none;
  386. box-sizing: border-box;
  387. position:absolute; z-index: 2; overflow: hidden;
  388. top:0; left:0; width:90%; height:80%;
  389. margin:5%;
  390. // opacity: 0;
  391. .field-name-field-doc{
  392. @include vidlabel;
  393. z-index:5;
  394. transition:background-color 0.3s ease-in-out;
  395. }
  396. .field-name-title-field{
  397. position: absolute; z-index: -1;
  398. top:0; left:0; width: 100%;
  399. font-size: 1.5em;
  400. font-weight: 500;
  401. padding: 30px 7px 10px;
  402. background-color: rgba(255, 255, 255, 0.9);
  403. opacity: 0;
  404. transition:opacity 0.3s ease-in-out;
  405. }
  406. }
  407. .group-video a{ display: block; line-height: 0;}
  408. }
  409. &:not(.en_attente):hover .group-txt{
  410. .field-name-field-doc{background-color: transparent;}
  411. .field-name-title-field{opacity: 1;}
  412. }
  413. &.en_attente>.content{
  414. position: relative;
  415. &::before{
  416. position: absolute;
  417. top:0; left:0;
  418. width:100%; height:100%;
  419. content:" ";
  420. z-index: 10;
  421. background-color: #fff;
  422. opacity: 0.8;
  423. }
  424. }
  425. }
  426. }
  427. // _ __
  428. // ___ ____ (_)________ ____/ /__ _____
  429. // / _ \/ __ \/ / ___/ __ \/ __ / _ \/ ___/
  430. // / __/ /_/ / (__ ) /_/ / /_/ / __(__ )
  431. // \___/ .___/_/____/\____/\__,_/\___/____/
  432. // /_/
  433. aside.bottom{
  434. padding-top: $gouttiere*0.5;
  435. .field-name-field-episodes{
  436. // letter-spacing: -0.25em;
  437. .field-label{
  438. @include vidlabel;
  439. margin-bottom: 0.3em;
  440. }
  441. &>.field-items{
  442. display: flex;
  443. flex-flow: row nowrap;
  444. justify-content: space-between;
  445. &>.field-item{
  446. display: block;
  447. // letter-spacing: normal;
  448. // display: inline-block;
  449. width:19%;
  450. // padding-right:1%;
  451. // min-height: 110px;
  452. background-color: #fff;
  453. .node-episode{
  454. .content{
  455. position: relative;
  456. .group-txt{
  457. cursor: pointer; pointer-events: none;
  458. box-sizing: border-box;
  459. position:absolute; z-index: 2; overflow: hidden;
  460. top:0; left:0; width:90%; height:80%;
  461. margin:5%; padding:5%;
  462. background-color: rgba(255, 255, 255, 0.9);
  463. opacity: 1;
  464. transition:opacity,background-color 0.3s ease-in-out;
  465. .field-name-title-field{
  466. font-size: 4em;
  467. font-weight: 800;
  468. font-style: italic;
  469. text-align: center;
  470. }
  471. }
  472. .group-video a{ display: block; line-height: 0;}
  473. }
  474. &:not(.en_attente):hover .content .group-txt{
  475. opacity: 0.9;
  476. background-color: rgba(255, 255, 255, 0.3);
  477. }
  478. &.en_attente>.content{
  479. position: relative;
  480. &::before{
  481. position: absolute;
  482. top:0; left:0;
  483. width:100%; height:100%;
  484. content:" ";
  485. z-index: 10;
  486. background-color: #fff;
  487. opacity: 0.8;
  488. }
  489. }
  490. }
  491. }
  492. }
  493. }
  494. .field-name-body{
  495. // display:none;
  496. }
  497. }
  498. }
  499. &.en_attente{
  500. .content>.main{
  501. position: relative;
  502. &::before{
  503. position: absolute;
  504. top:0; left:0;
  505. width:100%; height:100%;
  506. content:" ";
  507. z-index: 10;
  508. background-color: #fff;
  509. opacity: 0.8;
  510. }
  511. }
  512. }
  513. }
  514. // ____ __
  515. // / __ \_ _____ _____/ /___ ___ __
  516. // / / / / | / / _ \/ ___/ / __ `/ / / /
  517. // / /_/ /| |/ / __/ / / / /_/ / /_/ /
  518. // \____/ |___/\___/_/ /_/\__,_/\__, /
  519. // /____/
  520. #DOMWindowOverlay{
  521. // background-color: #fff!important;
  522. }
  523. #DOMWindow{
  524. .embedded-video, .player ,iframe{
  525. width:100%;
  526. height:100%;
  527. }
  528. }
  529. // ____
  530. // / __ \____ _____ ____
  531. // / /_/ / __ `/ __ `/ _ \
  532. // / ____/ /_/ / /_/ / __/
  533. // /_/ \__,_/\__, /\___/
  534. // /____/
  535. .page-title{
  536. font-size: 3em;
  537. font-weight: 400;
  538. text-transform: capitalize;
  539. }
  540. // ______ __
  541. // / ____/___ ____ / /____ _____
  542. // / /_ / __ \/ __ \/ __/ _ \/ ___/
  543. // / __/ / /_/ / /_/ / /_/ __/ /
  544. // /_/ \____/\____/\__/\___/_/
  545. #footer{
  546. }
  547. #block-menu-menu-footer-menu{
  548. padding:2em 0;
  549. ul{ margin:0; padding:0; text-align: center;}
  550. li{display:inline-block; list-style: none;}
  551. a{ text-decoration: none; color: inherit;}
  552. }
  553. .region-footer-bottom{
  554. text-align: center;
  555. }
  556. .region-footer-bottom .block{
  557. display: inline-block;
  558. font-size:0.7em;
  559. margin: 2em 0;
  560. }
  561. #content{padding:1em;}
  562. /** Messages. */
  563. div.messages {
  564. padding: 9px;
  565. margin: 0.5em 0 0;
  566. color: #036;
  567. background: #bdf;
  568. border: 1px solid #ace;
  569. -moz-border-radius: 5px;
  570. -webkit-border-radius: 5px;
  571. border-radius: 5px;
  572. }
  573. div.warning {
  574. color: #840;
  575. background: #fe6;
  576. border-color: #ed5;
  577. }
  578. div.error {
  579. color: #fff;
  580. background: #e63;
  581. border-color: #d52;
  582. }
  583. div.error p.error {
  584. color: #333;
  585. }
  586. div.status {
  587. color: #360;
  588. background: #cf8;
  589. border-color: #be7;
  590. }
  591. /** Tab navigation */
  592. ul.primary, .views-admin-links ul {
  593. font:13px/1.231 sans-serif; *font-size:small;
  594. border-collapse: collapse;
  595. padding: 0 0 0 1em; /* LTR */
  596. white-space: nowrap;
  597. list-style: none;
  598. margin: 5px;
  599. height: auto;
  600. line-height: normal;
  601. // border-bottom: 1px solid #bbb;
  602. }
  603. ul.primary li, .views-admin-links li{
  604. display: inline;
  605. }
  606. ul.primary li a, .views-admin-links li a {
  607. // background-color: #ddd;
  608. // border-color: #bbb;
  609. border-width: 1px;
  610. border-style: solid solid none solid;
  611. height: auto;
  612. margin-right: 0.5em; /* LTR */
  613. padding: 0 1em;
  614. text-decoration: none;
  615. -moz-border-radius-topleft: 5px;
  616. -webkit-border-top-left-radius: 5px;
  617. border-top-left-radius: 5px;
  618. -moz-border-radius-topright: 5px;
  619. -webkit-border-top-right-radius: 5px;
  620. border-top-right-radius: 5px;
  621. }
  622. // ul.primary li.active a {
  623. // background-color: #fff;
  624. // border: 1px solid #bbb;
  625. // border-bottom: #fff 1px solid;
  626. // }
  627. // ul.primary li a:hover, .views-admin-links li a:hover{
  628. // background-color: #eee;
  629. // border-color: #ccc;
  630. // border-bottom-color: #eee;
  631. // }
  632. // ul.secondary {
  633. // border-bottom: 1px solid #bbb;
  634. // padding: 0.5em 1em;
  635. // margin: 5px;
  636. // }
  637. // ul.secondary li {
  638. // display: inline;
  639. // padding: 0 1em;
  640. // border-right: 1px solid #ccc; /* LTR */
  641. // }
  642. // ul.secondary a {
  643. // padding: 0;
  644. // text-decoration: none;
  645. // }
  646. // ul.secondary a.active {
  647. // border-bottom: 4px solid #999;
  648. // }
  649. //
  650. /** Form */
  651. #node-form .form-region-main{border-right: 1px solid #BFBFBF; padding-right:10px; width:68%;}
  652. #node-form .form-region-main label{float:left; min-width:25%;}
  653. #node-form .form-region-main input.form-text{width:40%;}
  654. #node-form .form-region-right{padding-left:5px;}
  655. #node-form .form-region-right label{float:left; min-width:35%;}
  656. #node-form .form-region-right input.form-text{width:60%;}
  657. #node-form .form-region-main label.option, #node-form .form-region-right label.option{float: none;}
  658. form:not( #views-ui-config-item-form ) .form-item {
  659. position:relative;
  660. /* padding:9px;*/
  661. }
  662. form:not( #views-ui-config-item-form ) .form-item .description{
  663. position:absolute;
  664. bottom:140%;
  665. /* right:-15px;*/
  666. z-index:5;
  667. left:50%;
  668. color:#1A1A1A;
  669. line-height:1.1;
  670. background:url(../images/popup.png) 50% 100% no-repeat;
  671. width:240px;
  672. margin:0px 0px -15px;
  673. padding:9px 10px 20px;
  674. display:none;
  675. border-top: 1px solid #9F9F9F;
  676. }
  677. form:not( #views-ui-config-item-form ) .form-item:hover {
  678. z-index:1;
  679. height:auto; /* Fix for flicker in IE7 */
  680. }
  681. form:not( #views-ui-config-item-form ) .form-item:hover > .description { display:block; }
  682. fieldset{
  683. border: 1px solid #D4D4D4;
  684. padding:10px;
  685. margin-bottom:1em;
  686. -moz-border-radius: 5px;
  687. -webkit-border-radius: 5px;
  688. border-radius: 5px;
  689. }
  690. fieldset legend{
  691. font-size:1.6em;
  692. }
  693. input.form-text{max-width:95%;}
  694. /** TABLE */
  695. table{width:100%;
  696. -moz-border-radius: 5px;
  697. -webkit-border-radius: 5px;
  698. border-radius: 5px;
  699. }
  700. table thead th{
  701. background-color: #CCC;
  702. padding:0.5em 1em;
  703. text-align: left;
  704. }
  705. table tbody tr.even, table tbody tr.odd{
  706. border-bottom: 0 solid #CCCCCC;
  707. padding: 0.1em 0.6em;
  708. }
  709. table tbody tr.even{background-color: #EEE;}
  710. table tbody tr.odd{background-color: #E5E5E5;}
  711. table tbody td{
  712. padding:0.5em 1em;
  713. text-align: left;
  714. }
  715. td.active {background-color: transparent;}
  716. #tasks{
  717. .tabs{
  718. border: none;
  719. padding:0;
  720. a{
  721. border:none;
  722. border-radius: 3px;
  723. background-color: #eee;
  724. padding:0.4em;
  725. color: #000;
  726. margin:0 1em 0 0;
  727. &.active{
  728. background-color: #999;
  729. }
  730. }
  731. }
  732. }