Skip to content

Commit

Permalink
Readme update, Table Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
enkodellc committed Jun 5, 2019
1 parent 366b529 commit af9ad6c
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 5 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

Blazor Boilerplate / Starter Template with MatBlazor and IdentityServer

[![GitHub Stars](https://img.shields.io/github/stars/enkodellc/blazorboilerplate.svg)](https://github.com/enkodellc/blazorboilerplate/stargazers)
[![GitHub Issues](https://img.shields.io/github/issues/enkodellc/blazorboilerplate.svg)](https://github.com/enkodellc/blazorboilerplate/issues)
[![Live Demo](https://img.shields.io/badge/demo-online-green.svg)](http://blazorboilerplate.com)
[![MIT](https://img.shields.io/github/license/SamProf/MatBlazor.svg)](LICENSE)

## Goal
To create a boilerplate code base using Blazor / MatBlazor that includes most of the basic functionality of a starter kit (AspnetBoilerplate) that is lean yet powerful for anyone to build off. Hopefully we can get some contributors to review and refine the code.
To create a boilerplate code base using Blazor / MatBlazor & .Net Core that includes most of the basic functionality of a starter kit (similar to AspnetBoilerplate) that is lean yet powerful for anyone to build off. A repository that is not controlled by a corporation but by a community.

### Live demo
[Blazor Boilerplate](http://blazorboilerplate.com) - Give a quick test. The initial release is fairly simple but take a look and contribute!
# Live demo
[Blazor Boilerplate](http://blazorboilerplate.com) - Kick the tires. The initial release is fairly simple but I am updating almost daily!

## Prerequisites

Expand Down Expand Up @@ -35,14 +40,21 @@ Complete all Blazor dependencies.
We'd greatly appreciate any contribution you make. I am very open to updates and features, though most feature requests
will be depending on how much community support for it is.

## Completed

- Basic Login / User Creation
- Admin Theme using Material Design / MatBlazor - Free to use.
- Log Files

## Road map

- Add Database for better data storage.
- Add SQL Database for better data storage.
- Breadcrumbs.
- Forgot Password Functionality.
- Setting management UI.
- User, role, permission and organization unit management UI.
- Real time chat and notification system. Slack Communication clone?
- Blog or other real world functionality.
- Audit log report UI.

## License
Expand Down
2 changes: 1 addition & 1 deletion src/BlazorBoilerplate.Client/Pages/FetchData.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}
else
{
<MatTable Items="@forecasts">
<MatTable Items="@forecasts" Class="mat-elevation-z5">
<MatTableHeader>
<th>Date</th>
<th>Temp. (C)</th>
Expand Down
46 changes: 46 additions & 0 deletions src/BlazorBoilerplate.Client/wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,52 @@ hr {
}


/* MatTable */
.mdc-table {
border-collapse: collapse;
border-spacing: 0;
display: inline-block;
overflow-x: auto;
margin: 8px 0 32px;
max-width: 100%;
border: 1px solid #eee;
width: 100%

}

.mdc-table th {
font-family: Roboto, sans-serif;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-size: 18px;
line-height: 18px;
font-weight: bold;
letter-spacing: .04em;
text-decoration: inherit;
text-transform: inherit;
background-color: whitesmoke !important;
border-top: none;
color: #444;
text-align: left;
border: 1px solid #eee;
padding: 12px !important;
}

.mdc-table td {
border: 1px solid #eee;
padding: 12px 12px 12px 24px !important;
background-color:white;
}

.mdc-table td:first-child {
border-left: none;
}

.mdc-table td:last-child {
border-right: none;
width: 100%;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

Expand Down

0 comments on commit af9ad6c

Please sign in to comment.