styles.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @import '../bower_components/foundation/scss/normalize.scss';
  2. @import '../bower_components/foundation/scss/foundation.scss';
  3. @import "settings";
  4. $green: #31cd11;
  5. /*
  6. _ _ _
  7. | | | | | |
  8. | |__| | ___ __ _ __| | ___ _ __
  9. | __ |/ _ \/ _` |/ _` |/ _ \ '__|
  10. | | | | __/ (_| | (_| | __/ |
  11. |_| |_|\___|\__,_|\__,_|\___|_|
  12. */
  13. header#top-bar{
  14. position: fixed;
  15. width:100%; top:0;
  16. background-color: rgba(250, 250, 250, 0.8);
  17. // TODO: flou sous le haeder
  18. z-index: 10;
  19. h1{
  20. text-align: center;
  21. a{
  22. color: #000;
  23. }}
  24. #right-nav{
  25. }
  26. #left-nav{
  27. ul{padding: 0; margin: 0;}
  28. li{
  29. list-style: none;
  30. }
  31. }
  32. }
  33. /*
  34. _____ _
  35. / ____| | |
  36. | | ___ _ __ | |_ ___ _ __
  37. | | / _ \ '_ \| __/ _ \ '__|
  38. | |___| __/ | | | || __/ |
  39. \_____\___|_| |_|\__\___|_|
  40. */
  41. div#center{
  42. padding-top:10em;
  43. .columns{
  44. padding: 0;
  45. }
  46. .projet{
  47. padding:1em;
  48. }
  49. }
  50. /*
  51. __ _
  52. / _| | |
  53. | |_ ___ ___ | |_ ___ _ __
  54. | _/ _ \ / _ \| __/ _ \ '__|
  55. | || (_) | (_) | || __/ |
  56. |_| \___/ \___/ \__\___|_|
  57. */
  58. footer#bottom-bar{
  59. background-color: $green;
  60. text-align: center;
  61. padding: 1em 0;
  62. }