Compare commits

...

2 Commits

Author SHA1 Message Date
BurnyLlama e71c5baedd Added example config. (NOT IMPLEMENTED) 2023-08-04 17:36:42 +02:00
BurnyLlama bb526fd04b Added view for "default" buttons. 2023-08-04 17:35:14 +02:00
2 changed files with 67 additions and 0 deletions

60
example-config.yml Normal file
View File

@ -0,0 +1,60 @@
general:
# Reset commonly reset properties.
# E.g. margin, padding, box-sizing, etc.
# In Nebulosa, this is a really small reset.
# I recommend keeping it turned on.
css_reset: true
# Set the scroll behaviour. [ smooth | auto ]
scroll_behavior: smooth
# For `family` settings can be any valid CSS font family string.
font-settings:
default:
family: "'Manrope', sans-serif"
heading:
family: "'Manrope', sans-serif"
paragraph:
family: "'Alegreya', serif"
forms:
family: "'Manrope', sans-serif"
typography:
# Enables headings, paragraphs, bold, and italic.
enable_basic: true
# Enables ol and ul.
enable_lists: true
# Enables the blockquote element
enable_blockquotes: true
buttons:
# Enables button styling.
enabled: true
# Allows the use of a secondary button. (A button of different colour.)
enable_secondary: true
# Allow styling of buttons with the `disabled` property.
enable_disabled: true
# Select what styles of buttons to enable.
# These are only enabled if `buttons.enabled` is true.
enabled_styles:
raised: true
filled: true
outline: true
text_only: true
forms:
# Enables basic form styling.
# Forms, labels, and common (text) inputs.
enabled: true
# Enables custom styling for radio buttons and checkboxes.
custom_radio_checkbox: true
# Enables a custom styling for so called "switches".
enable_switch: true
# Enables a custom styling for color inputs.
custom_color: true
# Enables a custom styling for file inputs.
custom_file: true
# Enables a custom styling for range inputs.
custom_range: true
layouts:
publishing: true

View File

@ -7,6 +7,13 @@
</header>
<h1>Buttons</h1>
<h2>Default</h2>
<div>
<button class="btn primary">Primary</button>
<button class="btn secondary">Secondary</button>
<button class="btn" disabled>Disabled</button>
</div>
<h2>Raised</h2>
<div>
<button class="btn raised primary">Primary</button>