CSS: add new application layout + CSS
Without bootstrap!
This commit is contained in:
parent
aee17c5b19
commit
dc371b83b8
10 changed files with 57 additions and 12 deletions
27
app/assets/stylesheets/custom_reset.scss
Normal file
27
app/assets/stylesheets/custom_reset.scss
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue