CSS: add new application layout + CSS

Without bootstrap!
This commit is contained in:
Simon Lehericey 2017-05-03 16:50:36 +02:00 committed by gregoirenovel
parent aee17c5b19
commit dc371b83b8
10 changed files with 57 additions and 12 deletions

View file

@ -0,0 +1,27 @@
html,
body {
height: 100%;
}
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
a {
text-decoration: none;
}
// remove dotted outline on firefox
:focus {
outline: none;
}
::-moz-focus-inner {
border: none;
}