Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/ds simply toolbar #51

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added www/api/data/assets/fonts/CoconRegularFont.woff
Binary file not shown.
1 change: 1 addition & 0 deletions www/api/data/assets/img/feather-sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions www/api/data/base-components/font-cocon/headHtml/cocon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<style>
@font-face {
font-family: 'Cocon';
font-style: normal;
font-weight: 500;
src: local('Cocon'), url('/assets/fonts/CoconRegularFont.woff') format('woff');
}
</style>
1 change: 1 addition & 0 deletions www/api/data/base-components/font-cocon/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"id":"font-cocon","description":""}
38 changes: 38 additions & 0 deletions www/api/data/components/0-ds-styling/componentCss/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans:400,400i,700,700i');
:root {
--ds-primary: var(--ds-simplyedit);
--ds-primary-dark: var(--ds-simplyedit-dark);
--ds-primary-contrast: var(--ds-white);
--ds-primary-light: var(--ds-simplyedit-light);
--ds-primary-gradient: var(--ds-simplyedit-gradient);
--ds-primary-gradient-bump: var(--ds-simplyedit-gradient-bump);
--ds-support: #06CC06;
--ds-support-dark: #05BB05;
--ds-support-light: #07DE07;
--ds-support-contrast: #FFF;
--ds-support-gradient: linear-gradient( to left, var(--ds-support-light), var(--ds-support-dark) );
}
html, body {
height: 100%;
}
body {
display: grid;
grid-template-columns: 210px 2fr 2fr;
grid-template-rows: 60px 2fr 2fr;
gap: 0px 0px;
grid-template-areas:
"header header header"
"nav pane pane"
"nav pane pane"
}
body > header {
grid-area: header;
}
body > nav {
grid-area: nav;
overflow: auto;
}
body > div.main {
grid-area: pane;
overflow: auto;
}
Loading
Loading