-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efe34f6
commit d4d3020
Showing
8 changed files
with
529 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.r1{ | ||
width:30%; | ||
margin-left: 50%; | ||
} | ||
.#myModal{ | ||
width:30%; | ||
padding: 10px; | ||
} | ||
.input-field input[type=text].invalid { | ||
border-bottom: 1px solid #000; | ||
box-shadow: 0 1px 0 0 #000; | ||
} | ||
.panel-info { | ||
border-color: #bce8f1; | ||
} | ||
.panel { | ||
margin-bottom: 20px; | ||
background-color: #fff; | ||
border: 1px solid #bce8f1; | ||
border-radius: 4px; | ||
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05); | ||
box-shadow: 0 1px 1px rgba(0,0,0,.05); | ||
} | ||
.panel-info>.panel-heading { | ||
color: #31708f; | ||
background-color: #d9edf7; | ||
border-color: #bce8f1; | ||
} | ||
.panel-heading { | ||
padding: 10px 15px; | ||
border-bottom: 1px solid transparent; | ||
border-top-right-radius: 3px; | ||
border-top-left-radius: 3px; | ||
} | ||
.panel-title { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
font-size: 16px; | ||
color: inherit; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
html { | ||
-webkit-transition: background-color 1s; | ||
transition: background-color 1s; | ||
} | ||
|
||
|
||
html, body { | ||
/* For the loading indicator to be vertically centered ensure */ | ||
/* the html and body elements take up the full viewport */ | ||
|
||
font-family: 'Roboto', sans-serif; | ||
|
||
|
||
} | ||
html.loading { | ||
/* Replace #333 with the background-color of your choice */ | ||
/* Replace loading.gif with the loading image of your choice */ | ||
background: url('../loader.gif') no-repeat 50% 50%; | ||
|
||
margin-top:-55%; | ||
/* Ensures that the transition only runs in one direction */ | ||
-webkit-transition: background-color 0; | ||
transition: background-color 0; | ||
} | ||
body { | ||
-webkit-transition: opacity 1s ease-in; | ||
transition: opacity 1s ease-in; | ||
} | ||
html.loading body { | ||
/* Make the contents of the body opaque during loading */ | ||
opacity: 0; | ||
|
||
/* Ensures that the transition only runs in one direction */ | ||
-webkit-transition: opacity 0; | ||
transition: opacity 0; | ||
} | ||
.table-responsive{ | ||
padding:4%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Parse.initialize("1lRkVkAfr6Daum7wITXFrFyk8GlCbBwx8soPwnAR", "PzbJSDOdw0ZlMHWj5x9umDB4XgqsPenbWxZrxooy"); | ||
|
||
|
||
var app = angular.module('app',[]); | ||
app.controller('mycontroller',['$scope',function($scope){ | ||
$scope.showing=true; | ||
$scope.show=function(){ | ||
$scope.showing=!$scope.showing; | ||
} | ||
}]) |
Oops, something went wrong.