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. html,
  173. body,
  174. #container,
  175. #main,
  176. #main>.region,
  177. #block-system-main,
  178. #block-system-main>.content,
  179. .node-thematique{
  180. overflow-x: visible;
  181. }
  182. // thematique
  183. .node-thematique{
  184. min-height:766px;
  185. margin-bottom: 10em;
  186. position: relative;
  187. &::before{
  188. position: absolute;
  189. content:" ";
  190. width:110%; height:110%;
  191. top:-5%; left:-5%;
  192. z-index: -1;
  193. background-position: center;
  194. background-size: contain;
  195. background-repeat: no-repeat;
  196. // border: 1px dotted red;
  197. }
  198. @mixin node_thema($bg, $sb_bg, $coul){
  199. &::before{background-image: $bg;}
  200. &.en_attente::before{background-image: $sb_bg;}
  201. &.en_attente{
  202. >h2,
  203. .group-video .field-name-field-description h3,
  204. .group-description .field-name-field-ecouter,
  205. .node-documentair .field-name-field-doc,
  206. .node-documentair .field-name-title-field,
  207. .field-name-field-episodes .field-label,
  208. .node-episode .field-name-title-field{
  209. color: #aaa;//lighten(desaturate($coul, 40%), 20%);
  210. }
  211. }
  212. &:not(.en_attente){
  213. >h2,
  214. .group-video .field-name-field-description h3,
  215. .group-description .field-name-field-ecouter,
  216. .node-documentair .field-name-field-doc,
  217. .node-documentair .field-name-title-field,
  218. .field-name-field-episodes .field-label,
  219. .node-episode .field-name-title-field{color: $coul;}
  220. }
  221. }
  222. &.node-32{
  223. @include node_thema(
  224. url(../../images/fond-theme-0-flat.png),
  225. url(../../images/fond-theme-0-flat-nb.jpg),
  226. $coul0);
  227. }
  228. &.node-14{
  229. @include node_thema(
  230. url(../../images/fond-theme-1-flat.png),
  231. url(../../images/fond-theme-1-flat-nb.jpg),
  232. $coul1);
  233. }
  234. &.node-38{
  235. @include node_thema(
  236. url(../../images/fond-theme-2-flat.png),
  237. url(../../images/fond-theme-2-flat-nb.jpg),
  238. $coul2);
  239. }
  240. &.node-3{
  241. @include node_thema(
  242. url(../../images/fond-theme-3-flat.png),
  243. url(../../images/fond-theme-3-flat-nb.jpg),
  244. $coul3);
  245. }
  246. &.node-20{
  247. @include node_thema(
  248. url(../../images/fond-theme-4-flat.png),
  249. url(../../images/fond-theme-4-flat-nb.jpg),
  250. $coul4);
  251. }
  252. &.node-26{
  253. @include node_thema(
  254. url(../../images/fond-theme-5-flat.png),
  255. url(../../images/fond-theme-5-flat-nb.jpg),
  256. $coul5);
  257. }
  258. >h2{
  259. font-size: 3em;
  260. font-weight: 400;
  261. // padding-left: 0.18em;
  262. position:relative;
  263. span{
  264. position: absolute;
  265. top:-170px;
  266. }
  267. }
  268. .content{
  269. .field-name-field-emvideo img{width: 100%;}
  270. letter-spacing: -0.25em;
  271. >*{letter-spacing: normal;}
  272. $main_w : 69.5%;
  273. $right_w : 30.5%;
  274. $gouttiere: 1.2em;
  275. // _
  276. // ____ ___ ____ _(_)___
  277. // / __ `__ \/ __ `/ / __ \
  278. // / / / / / / /_/ / / / / /
  279. // /_/ /_/ /_/\__,_/_/_/ /_/
  280. article.main{
  281. display: inline-block;
  282. vertical-align: top;
  283. width:$main_w;
  284. overflow: hidden;
  285. .field-name-body{
  286. position: relative; z-index: 3;
  287. >*{padding:0 1em 0 0;}
  288. .summary{
  289. position: relative;
  290. height:5.75em; overflow: hidden;
  291. background-color: #fff;
  292. transition: background-color 0.5 ease-in-out;
  293. p{
  294. font-size: 1.1em;
  295. padding:0.5em 0.5em 0.5em 0;
  296. font-weight: 500;
  297. }
  298. }
  299. .value{
  300. position:absolute;
  301. height:1px; margin-bottom: 0;
  302. transition:height 0.5s ease-in-out;
  303. background-color: #fff;
  304. overflow: hidden;
  305. p{
  306. font-size: 1em; padding: 0.5em;
  307. }
  308. }
  309. &:hover{
  310. .summary{background-color: #fff;}
  311. .value{
  312. height:700px;
  313. }
  314. }
  315. p{padding:0 0 1em; margin: 0;}
  316. } //field-name-body
  317. .group-video{
  318. position: relative;
  319. min-height: 432px;
  320. .field-name-field-emvideo a{ display: block; line-height: 0;}
  321. .group-description{
  322. cursor: pointer; pointer-events: none;
  323. box-sizing: border-box;
  324. position:absolute; z-index: 2;
  325. top:0; left: 0;
  326. width:90%;
  327. height:80%;
  328. margin:5%;
  329. padding:5%;
  330. background-color: rgba(255,255,255,0);
  331. transition: background-color 0.3s ease-in-out;
  332. .field-name-field-ecouter{
  333. font-size: 1em;
  334. font-weight: 500;
  335. background-color: rgba(255,255,255,0.9);
  336. transition: background-color 0.3s ease-in-out;
  337. display: inline-block;
  338. }
  339. .field-name-field-description{
  340. opacity: 0;
  341. transition: opacity 0.3s ease-in-out;
  342. h3{
  343. font-weight: 500; font-size: 2em
  344. }
  345. }
  346. }
  347. &:hover .group-description{
  348. background-color: rgba(255,255,255,0.9);
  349. .field-name-field-ecouter{
  350. background-color: rgba(255,255,255,0);
  351. }
  352. .field-name-field-description{opacity:1;}
  353. }
  354. }
  355. }
  356. // __
  357. // ____/ /___ __________
  358. // / __ / __ \/ ___/ ___/
  359. // / /_/ / /_/ / /__(__ )
  360. // \__,_/\____/\___/____/
  361. aside.right{
  362. display: inline-block;
  363. vertical-align: top;
  364. width: $right_w;
  365. .field-name-field-eclairages{
  366. padding-left:1em;
  367. .field-item:not(:last-child){
  368. padding-bottom: $gouttiere;
  369. }
  370. }
  371. .node-documentair{
  372. min-height: 160px;
  373. background-color: #fff;
  374. .content{
  375. position: relative;
  376. .group-txt{
  377. cursor: pointer; pointer-events: none;
  378. box-sizing: border-box;
  379. position:absolute; z-index: 2; overflow: hidden;
  380. top:0; left:0; width:90%; height:80%;
  381. margin:5%;
  382. // opacity: 0;
  383. .field-name-field-doc{
  384. display: inline-block;
  385. z-index:5;
  386. font-size: 1em;
  387. font-weight: 500;
  388. padding: 7px;
  389. background-color: rgba(255, 255, 255, 0.9);
  390. transition:background-color 0.3s ease-in-out;
  391. }
  392. .field-name-title-field{
  393. position: absolute; z-index: -1;
  394. top:0; left:0; width: 100%;
  395. font-size: 1.5em;
  396. font-weight: 500;
  397. padding: 30px 7px 10px;
  398. background-color: rgba(255, 255, 255, 0.9);
  399. opacity: 0;
  400. transition:opacity 0.3s ease-in-out;
  401. }
  402. }
  403. .group-video a{ display: block; line-height: 0;}
  404. }
  405. &:not(.en_attente):hover .group-txt{
  406. .field-name-field-doc{background-color: transparent;}
  407. .field-name-title-field{opacity: 1;}
  408. }
  409. &.en_attente>.content{
  410. position: relative;
  411. &::before{
  412. position: absolute;
  413. top:0; left:0;
  414. width:100%; height:100%;
  415. content:" ";
  416. z-index: 10;
  417. background-color: #fff;
  418. opacity: 0.8;
  419. }
  420. }
  421. }
  422. }
  423. // _ __
  424. // ___ ____ (_)________ ____/ /__ _____
  425. // / _ \/ __ \/ / ___/ __ \/ __ / _ \/ ___/
  426. // / __/ /_/ / (__ ) /_/ / /_/ / __(__ )
  427. // \___/ .___/_/____/\____/\__,_/\___/____/
  428. // /_/
  429. aside.bottom{
  430. padding-top: $gouttiere*0.5;
  431. .field-name-field-episodes{
  432. // letter-spacing: -0.25em;
  433. .field-label{
  434. font-size: 1.3em;
  435. font-weight: 400;
  436. background-color: #fff;
  437. display: inline-block;
  438. padding:0.2em 0.4em 0;
  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: 700;
  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. }