styles.scss 17 KB

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