Skip to content

nHubCodechallenge Registration sms #4

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

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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 .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Auto detect text files and perform LF normalization
* text=auto

.history
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# expo
.expo/

# dependencies
/node_modules

# misc
.env.local
.env.development.local
.env.test.local
.env.production.local
.history
.DS_Store

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.gitattributes
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Change Log

## [1.4.0] 2017-11-03
### Library Updates
- jQuery - `3.2.1`
- bootstrap - `3.3.7`
- chartist - `0.11.0`

### Bug Fixing
- replaced old javascript checkboxes and radios with only css checkboxes and radios
- fixed responsive sidebar
- small bug fixes

## [1.3.1] 2017-01-19
- switched to MIT license

## [1.3] 2016-01-22
### New Template page + Video Tutorial [current version]
- added the default template page + youtube video tutorial on how to create an Admin Template (link: https://www.youtube.com/watch...)

## [1.2] 2016-01-17
### New Page
- for those who want to upsell inside their dashboard we added a new page "Upgrade to PRO" with a pricing and options table

## [1.1] 2015-09-08
### Bug Fixing
- added company name/logo inside the sidebar for small screens
- fixed bug for notification with close button on small screens
- fix live preview bug for download on small screens
- fix table responsive for small screens
- added new labels for chartist on small screens

## [1.0] 2015-08-20
### Initial Release
6 changes: 6 additions & 0 deletions assets/css/animate.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions assets/css/bootstrap.min.css

Large diffs are not rendered by default.

67 changes: 67 additions & 0 deletions assets/css/demo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
@media (min-width: 992px){
.typo-line{
padding-left: 140px;
margin-bottom: 40px;
position: relative;
}

.typo-line .category{
transform: translateY(-50%);
top: 50%;
left: 0px;
position: absolute;
}
}

.all-icons [class*="pe-"]{
font-size: 40px;
}
.all-icons input{
border: 0;
}
.all-icons .font-icon-detail{
text-align: center;
padding: 45px 0px 30px;
border: 1px solid #e5e5e5;
border-radius: 6px;
margin: 15px 0;
}
.all-icons .font-icon-detail input{
margin: 25px auto 0;
width: 100%;
text-align: center;
display: block;
color: #aaa;
font-size: 13px;
}

#map{
position:relative;
width:100%;
height: calc(100% - 60px);
}

.places-buttons .btn{
margin-bottom: 30px
}
.sidebar .nav > li.active-pro{
position: absolute;
width: 100%;
bottom: 10px;
}
.sidebar .nav > li.active-pro a{
background: rgba(255, 255, 255, 0.14);
opacity: 1;
color: #FFFFFF;
}

.table-upgrade td:nth-child(2),
.table-upgrade td:nth-child(3){
text-align: center;
}

@media all and (max-width: 991px) {
.sidebar .nav > li.active-pro{
position: initial;
}
}
Loading