mirror of
https://github.com/Karaka-Management/Developer-Guide.git
synced 2026-01-11 12:28:41 +00:00
51 lines
1.2 KiB
Markdown
51 lines
1.2 KiB
Markdown
# Alerts
|
|
|
|
Alerts are boxes styled in such a way that they attract the attention of the user which makes them ideal to provide important information to the user. Alerts are often used on a page header, footer or as popup.
|
|
|
|
## Examples
|
|
|
|
### Ok
|
|
|
|

|
|
|
|
```html
|
|
<div class="log-msg log-lvl-ok"><i class="fa fa-check"></i>This is ok</div>
|
|
```
|
|
|
|
#### Advanced
|
|
|
|

|
|
|
|
```html
|
|
<div class="log-msg log-lvl-ok">
|
|
<h1 class="log-msg-title">This is a Title</h1><i class="close fa fa-times"></i>
|
|
<div class="log-msg-content">This is a message</div>
|
|
</div>
|
|
```
|
|
|
|
### Info
|
|
|
|

|
|
|
|
```html
|
|
<div class="log-msg log-lvl-info"><i class="fa fa-bell"></i>This is a info</div>
|
|
```
|
|
|
|
### Warning
|
|
|
|

|
|
|
|
```html
|
|
<div class="log-msg log-lvl-warning"><i class="fa fa-exclamation-triangle"></i>This is a warning</div>
|
|
```
|
|
|
|
### Error
|
|
|
|

|
|
|
|
```html
|
|
<div class="log-msg log-lvl-error"><i class="fa fa-times"></i>This is an error</div>
|
|
```
|
|
|
|
|