Ajout de site statique sous middleman

2020
Nolwenn LAVIELLE 3 years ago
commit 70fa4525b3
  1. 5
      .gitignore
  2. 13
      Gemfile
  3. 122
      Gemfile.lock
  4. 46
      config.rb
  5. 6
      data/navigation.yml
  6. 3
      data/partenaires.yml
  7. 0
      source/images/.keep
  8. 200
      source/images/codeurs-en-liberte.svg
  9. 7
      source/index.html.erb
  10. 1
      source/javascripts/site.js
  11. 21
      source/layouts/layout.erb
  12. 7
      source/partials/_navigation.erb
  13. 3
      source/partials/_partenaires.erb
  14. 54
      source/stylesheets/_bootstrap-custom.scss
  15. 16
      source/stylesheets/_variables.scss
  16. 2
      source/stylesheets/site.css.scss

5
.gitignore vendored

@ -0,0 +1,5 @@
.bundle
.cache
.DS_Store
.sass-cache
build/

@ -0,0 +1,13 @@
source 'https://rubygems.org'
gem 'middleman', '~> 4.2'
gem 'middleman-sprockets'
gem 'middleman-autoprefixer', '~> 2.7'
gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby, :x64_mingw]
gem 'wdm', '~> 0.1', platforms: [:mswin, :mingw, :x64_mingw]
gem 'bootstrap-sass'
source 'https://rails-assets.org' do
gem 'rails-assets-jquery'
end

@ -0,0 +1,122 @@
GEM
remote: https://rubygems.org/
remote: https://rails-assets.org/
specs:
activesupport (5.0.7.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
autoprefixer-rails (9.7.1)
execjs
backports (3.15.0)
bootstrap-sass (3.4.1)
autoprefixer-rails (>= 5.2.1)
sassc (>= 2.0.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
concurrent-ruby (1.1.5)
contracts (0.13.0)
dotenv (2.7.5)
erubis (2.7.0)
execjs (2.7.0)
fast_blank (1.0.0)
fastimage (2.1.7)
ffi (1.11.1)
haml (5.1.2)
temple (>= 0.8.0)
tilt
hamster (3.0.0)
concurrent-ruby (~> 1.0)
hashie (3.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
kramdown (1.17.0)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
memoist (0.16.0)
middleman (4.3.5)
coffee-script (~> 2.2)
haml (>= 4.0.5)
kramdown (~> 1.2)
middleman-cli (= 4.3.5)
middleman-core (= 4.3.5)
middleman-autoprefixer (2.10.1)
autoprefixer-rails (~> 9.1)
middleman-core (>= 3.3.3)
middleman-cli (4.3.5)
thor (>= 0.17.0, < 2.0)
middleman-core (4.3.5)
activesupport (>= 4.2, < 5.1)
addressable (~> 2.3)
backports (~> 3.6)
bundler
contracts (~> 0.13.0)
dotenv
erubis
execjs (~> 2.0)
fast_blank
fastimage (~> 2.0)
hamster (~> 3.0)
hashie (~> 3.4)
i18n (~> 0.9.0)
listen (~> 3.0.0)
memoist (~> 0.14)
padrino-helpers (~> 0.13.0)
parallel
rack (>= 1.4.5, < 3)
sassc (~> 2.0)
servolux
tilt (~> 2.0.9)
uglifier (~> 3.0)
middleman-sprockets (4.1.1)
middleman-core (~> 4.0)
sprockets (>= 3.0)
minitest (5.13.0)
padrino-helpers (0.13.3.4)
i18n (~> 0.6, >= 0.6.7)
padrino-support (= 0.13.3.4)
tilt (>= 1.4.1, < 3)
padrino-support (0.13.3.4)
activesupport (>= 3.1)
parallel (1.18.0)
public_suffix (4.0.1)
rack (2.0.7)
rails-assets-jquery (3.4.1)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
sassc (2.2.1)
ffi (~> 1.9)
servolux (0.13.0)
sprockets (4.0.0)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
temple (0.8.2)
thor (0.20.3)
thread_safe (0.3.6)
tilt (2.0.10)
tzinfo (1.2.5)
thread_safe (~> 0.1)
uglifier (3.2.0)
execjs (>= 0.3.0, < 3)
PLATFORMS
ruby
DEPENDENCIES
bootstrap-sass
middleman (~> 4.2)
middleman-autoprefixer (~> 2.7)
middleman-sprockets
rails-assets-jquery!
tzinfo-data
wdm (~> 0.1)
BUNDLED WITH
1.17.2

@ -0,0 +1,46 @@
# Activate and configure extensions
# https://middlemanapp.com/advanced/configuration/#configuring-extensions
activate :autoprefixer do |prefix|
prefix.browsers = "last 2 versions"
end
# Layouts
# https://middlemanapp.com/basics/layouts/
# Per-page layout changes
page '/*.xml', layout: false
page '/*.json', layout: false
page '/*.txt', layout: false
# With alternative layout
# page '/path/to/file.html', layout: 'other_layout'
# Proxy pages
# https://middlemanapp.com/advanced/dynamic-pages/
# proxy(
# '/this-page-has-no-template.html',
# '/template-file.html',
# locals: {
# which_fake_page: 'Rendering a fake page with a local variable'
# },
# )
# Helpers
# Methods defined in the helpers block are available in templates
# https://middlemanapp.com/basics/helper-methods/
# helpers do
# def some_helper
# 'Helping'
# end
# end
# Build-specific configuration
# https://middlemanapp.com/advanced/configuration/#environment-specific-settings
# configure :build do
# activate :minify_css
# activate :minify_javascript
# end

@ -0,0 +1,6 @@
- name: Accueil
link: /
goto: home
- name: À propos
link: /about.html
goto: about

@ -0,0 +1,3 @@
- name: Codeurs en liberté
link: https://www.xn--codeursenlibert-pnb.fr/
logo: /images/codeurs-en-liberte.svg

@ -0,0 +1,200 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 61.397636 51.594101"
id="svg3656"
width="61.398"
height="51.594"
version="1.1"
sodipodi:docname="codeurs-en-liberte.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata32">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs30" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1143"
id="namedview28"
showgrid="false"
inkscape:zoom="8"
inkscape:cx="37.656687"
inkscape:cy="23.160172"
inkscape:window-x="1680"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg3656"
inkscape:pagecheckerboard="true" />
<style
id="style3658">.st0{display:none}.st1{display:inline}.st2,.st3,.st4{fill:none;stroke:#000;stroke-width:2.8346;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10}.st3,.st4{stroke-width:1.4173}.st4{stroke-width:1.3941}.st5,.st6{display:inline}.st5{fill:none}.st6{stroke:#000;stroke-width:.2835;stroke-miterlimit:10}.st7{font-family:'Raleway-Thin'}.st8{font-size:11.642px}.st9{stroke:#000;stroke-width:.2835;stroke-miterlimit:10}</style>
<path
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1.00000191px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="M 30.499,0.69699998 25.749808,3.4690085 18.499,9.1969998 3.8989999,15.597 0.99899998,34.596999 l 28.79999902,16.3 3.400001,-1.3 26.699998,-14.6 -3.2,-19 z"
id="path4586"
inkscape:connector-curvature="0" />
<g
style="fill:#ffffff;fill-opacity:0"
id="layer3"
transform="translate(-14.301,-21.203)">
<g
style="fill:#ffffff;fill-opacity:0"
id="g3700">
<g
style="fill:#ffffff;fill-opacity:0"
id="g3702">
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="polyline3704"
stroke-miterlimit="10"
d="m 48.2,71.3 14.1,-8.1 7.1,-4.1 3.6,-2.1 0.8,-0.5 0.4,-0.3 0.3,-0.3 0.3,-0.3 0.1,-0.4 0.1,-0.3 v -0.4" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="polyline3706"
stroke-miterlimit="10"
d="m 15,54.5 v 0.4 l 0.1,0.5 0.2,0.4 0.4,0.3 0.4,0.4 0.5,0.3 1,0.6 4.2,2.4 8.4,4.8 8.3,4.8 2.1,1.2 1,0.6 0.5,0.3 0.6,0.3 0.7,0.1 0.7,0.2 h 1.5 l 0.7,-0.1 0.7,-0.2 0.6,-0.2 0.6,-0.3" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="polyline3708"
stroke-miterlimit="10"
d="M 72.1,37.3 72,37.2 71.9,36.8 71.6,36.4 71.3,36.1 70.8,35.8 66.7,33.4 58.6,28.8 50.5,24.1 48.5,22.9 48,22.6 47.5,22.3 46.9,22.1 46.2,22 45.5,21.9 h -0.7 l -0.7,0.1 -0.7,0.1 -0.6,0.2 -0.6,0.2 -1,0.6" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="line3710"
stroke-miterlimit="10"
d="M 72.1,37.4 V 37.3" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="polyline3712"
stroke-miterlimit="10"
d="m 19.8,35.5 -0.5,0.3 -0.5,0.3 -0.3,0.4 -0.3,0.3 -0.1,0.4 v 0.2" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="line3714"
stroke-miterlimit="10"
d="M 15,54.5 18.1,37.4" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="line3716"
stroke-miterlimit="10"
d="M 72.1,37.3 75,54.5" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="line3718"
stroke-miterlimit="10"
d="M 72.1,37.3" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.39409995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
class="st4"
id="polyline3720"
stroke-miterlimit="10"
d="m 19.8,35.5 2.6,-0.9 2.6,-1 2.5,-1.2 2.5,-1.2 2.4,-1.4 2.3,-1.5 2.3,-1.6 2.1,-1.7 2.1,-1.9" />
</g>
</g>
</g>
<g
id="g4580"
style="fill:#ffffff;fill-opacity:0">
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 33.799,49.297 13.6,-7.9 6.9,-3.9 3.4,-2 0.8,-0.5 0.4,-0.3 0.3,-0.3 0.3,-0.3 0.1,-0.3 0.1,-0.4 -0.1,-0.3"
stroke-miterlimit="10"
id="polyline3684"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 1.699,32.997 v 0.5 l 0.1,0.4 0.2,0.4 0.4,0.3 0.4,0.4 0.5,0.3 1,0.5 4,2.4 8.1,4.6 8,4.7 2,1.1 1,0.6 0.5,0.3 0.6,0.2 0.7,0.2 0.7,0.1 0.7,0.1 0.7,-0.1 0.7,-0.1 0.6,-0.1 0.6,-0.2 0.6,-0.3"
stroke-miterlimit="10"
id="polyline3686"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 56.199,17.897 0.3,-0.4 0.2,-0.4 0.1,-0.4 v -0.3 l -0.1,-0.4 -0.3,-0.4 -0.3,-0.3 -0.5,-0.3 -3.9,-2.3 -7.8,-4.5 -7.8,-4.5 -2,-1.2 -0.5,-0.2 -0.5,-0.3 -0.6,-0.2 -0.6,-0.2 h -0.7 l -0.7,-0.1 -0.7,0.1 -0.6,0.1 -0.6,0.2 -0.6,0.3 -0.9,0.6"
stroke-miterlimit="10"
id="polyline3688"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 6.399,14.697 -0.5,0.3 -0.5,0.3 -0.3,0.3 -0.3,0.4 -0.1,0.4 v 0.4 l 0.1,0.3 0.2,0.4 0.3,0.4 0.5,0.3 0.9,0.5 1.9,1.1 7.7,4.4 7.6,4.4 3.8,2.3 0.5,0.2 0.5,0.3 0.7,0.1 0.6,0.1 0.7,0.1 h 0.6 l 0.7,-0.1 0.6,-0.2"
stroke-miterlimit="10"
id="polyline3690"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 1.699,32.997 3,-16.6"
stroke-miterlimit="10"
id="line3692"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 56.799,16.397 2.8,16.7"
stroke-miterlimit="10"
id="line3694"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 32.599,31.397 2.6,-0.8 2.6,-0.9 2.6,-1.1 2.4,-1.2 2.4,-1.3 2.4,-1.4 2.3,-1.6 2.2,-1.6 2.1,-1.8 2,-1.8"
stroke-miterlimit="10"
id="polyline3696"
class="st3" />
<path
style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.41729999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10"
inkscape:connector-curvature="0"
d="m 6.399,14.697 2.5,-0.9 2.5,-0.9 2.4,-1.2 2.4,-1.2 2.3,-1.3 2.3,-1.5 2.1,-1.5 2.1,-1.7 2.1,-1.7"
stroke-miterlimit="10"
id="polyline3698"
class="st3" />
</g>
<path
style="fill:#e60000;stroke-width:0.60000002"
inkscape:connector-curvature="0"
id="path3630"
d="m 43.847,16.677 c 1.563,0.677 2.555,2.323 2.312,4.077 -0.292,2.11 -2.261,3.605 -4.383,3.286 l -17.459,-2.627 -3.29,-0.43 -0.016,-0.002 c -0.007,0 -0.013,-0.002 -0.02,-0.003 -2.11,-0.314 -3.613,-2.238 -3.482,-4.376 a 3.55,3.55 0 0 1 0.026,-0.308 v -0.003 c 0.307,-2.263 2.364,-3.843 4.583,-3.524 l 4.029,0.58 c 0,0 -0.332,2.464 -1.944,2.232 -1.611,-0.232 -2.309,-1.17 -3.112,-1.285 -1.612,-0.232 -1.833,1.41 -1.944,2.23 v 0.005 c -0.084,0.63 0.177,1.115 0.717,1.33 0.714,0.283 1.808,0.015 2.64,-1.224 a 0.827,0.827 0 0 1 0.139,-0.153 l 0.04,-0.034 a 0.797,0.797 0 0 1 0.139,-0.086 c 0.012,-0.006 0.023,-0.014 0.036,-0.019 a 0.79,0.79 0 0 1 0.19,-0.054 c 0.014,-0.003 0.028,-0.003 0.042,-0.004 a 0.794,0.794 0 0 1 0.167,0 c 0.01,0 0.02,-0.002 0.03,0 0.006,0 0.012,0.004 0.018,0.005 a 0.789,0.789 0 0 1 0.195,0.057 l 0.025,0.014 a 0.8,0.8 0 0 1 0.11,0.062 c 0.014,0.01 0.024,0.021 0.036,0.03 a 0.828,0.828 0 0 1 0.154,0.16 l 0.025,0.033 a 0.824,0.824 0 0 1 0.09,0.183 c 0.002,0.005 0.006,0.008 0.007,0.014 l 1.059,3.107 13.905,2.129 a 3.825,3.825 0 0 1 -0.46,-2.405 c 0.169,-1.22 0.9,-2.225 1.896,-2.8 0,0 -16.755,-8.623 -16.708,-8.961 0.01,-0.066 0.071,-0.176 0.098,-0.24 6.966,2.735 14.308,6.279 20.11,9.004 z m -3.855,3.213 a 2.334,2.334 0 0 0 1.995,2.62 2.324,2.324 0 0 0 2.63,-1.972 2.334,2.334 0 0 0 -1.994,-2.62 2.324,2.324 0 0 0 -2.63,1.972 z" />
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,7 @@
---
title: Pas Sage En Seine
---
<h1>Bienvenue sur le site du festival</h1>
<p>Mais au fait, c’est quoi Pas Sage En Seine ?</p>

@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Use the title from a page's frontmatter if it has one -->
<title><%= current_page.data.title || "Middleman" %></title>
<%= stylesheet_link_tag "site" %>
<%= javascript_include_tag "site" %>
</head>
<body>
<header>
<%= partial "partials/navigation" %>
</header>
<%= yield %>
<footer>
<%= partial "partials/partenaires" %>
</footer>
</body>
</html>

@ -0,0 +1,7 @@
<nav role="navigation">
<ul>
<% data.navigation.each do |item| %>
<li><a href="#<%= item.goto %>"><%= item.name %></a></li>
<% end %>
</ul>
</nav>

@ -0,0 +1,3 @@
<% data.partenaires.each do |item| %>
<a href="<%= item.link %>"><img src="<%= item.logo %>" title="<%= item.name %>" alt="<%= item.name %>"></a>
<% end %>

@ -0,0 +1,54 @@
/*!
* Bootstrap v4.0.0-alpha.6 (https://getbootstrap.com)
* Copyright 2011-2017 The Bootstrap Authors
* Copyright 2011-2017 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
// Core variables and mixins
@import "bootstrap/variables";
@import "bootstrap/mixins";
@import "bootstrap/custom";
// Reset and dependencies
@import "bootstrap/normalize";
@import "bootstrap/print";
// Core CSS
@import "bootstrap/reboot";
@import "bootstrap/type";
@import "bootstrap/images";
@import "bootstrap/code";
@import "bootstrap/grid";
@import "bootstrap/tables";
@import "bootstrap/forms";
@import "bootstrap/buttons";
// Components
@import "bootstrap/transitions";
@import "bootstrap/dropdown";
@import "bootstrap/button-group";
@import "bootstrap/input-group";
@import "bootstrap/custom-forms";
@import "bootstrap/nav";
@import "bootstrap/navbar";
@import "bootstrap/card";
@import "bootstrap/breadcrumb";
@import "bootstrap/pagination";
@import "bootstrap/badge";
@import "bootstrap/jumbotron";
@import "bootstrap/alert";
@import "bootstrap/progress";
@import "bootstrap/media";
@import "bootstrap/list-group";
@import "bootstrap/responsive-embed";
@import "bootstrap/close";
// Components w/ JavaScript
@import "bootstrap/modal";
@import "bootstrap/tooltip";
@import "bootstrap/popover";
@import "bootstrap/carousel";
// Utility classes
@import "bootstrap/utilities";

@ -0,0 +1,16 @@
// Variables
// Scaffolding
$body-bg: #fff;
$text-color: #333;
$link-color: #337ab7;
$link-hover-color: darken($link-color, 15%);
$link-hover-decoration: underline;
// Typography
$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-serif: Georgia, "Times New Roman", Times, serif;
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
$font-family-base: $font-family-sans-serif;
$font-size-base: 14px;
$line-height-base: 1.428571429;

@ -0,0 +1,2 @@
@import "variables";
@import "bootstrap";
Loading…
Cancel
Save