INIT: initial commit
Added some initial files, components, functionality
This commit is contained in:
commit
72aaf5174d
19 changed files with 9962 additions and 0 deletions
27
app/assets/styles/general.css
Normal file
27
app/assets/styles/general.css
Normal file
|
@ -0,0 +1,27 @@
|
|||
:root {
|
||||
--padding-default: 1rem;
|
||||
--radius-default: 5px;
|
||||
--transition-default: 150ms;
|
||||
|
||||
--color-white: white;
|
||||
--color-red: #cc0001;
|
||||
--color-blue-dark: #341f97;
|
||||
--color-blue: #2e86de;
|
||||
--color-grey: #c7c7c7;
|
||||
|
||||
--color-main: var(--color-blue);
|
||||
|
||||
--box-shadow-z2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue