diff options
author | Sashi20 | 2018-08-21 16:31:05 +0530 |
---|---|---|
committer | Sashi20 | 2018-08-21 16:31:05 +0530 |
commit | aa955c22ae18d55667006acd222dbc79e39a8b25 (patch) | |
tree | f66cce0beb9ec08b473c3d227cf5152a0772b329 /static/website/bootstrap-css/custom.css | |
download | nccps-2018-aa955c22ae18d55667006acd222dbc79e39a8b25.tar.gz nccps-2018-aa955c22ae18d55667006acd222dbc79e39a8b25.tar.bz2 nccps-2018-aa955c22ae18d55667006acd222dbc79e39a8b25.zip |
Initial commit
Diffstat (limited to 'static/website/bootstrap-css/custom.css')
-rwxr-xr-x | static/website/bootstrap-css/custom.css | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/static/website/bootstrap-css/custom.css b/static/website/bootstrap-css/custom.css new file mode 100755 index 0000000..7014560 --- /dev/null +++ b/static/website/bootstrap-css/custom.css @@ -0,0 +1,74 @@ +/* Paste this css to your style sheet file or under head tag */ +/* This only works with JavaScript, +if it's not present, don't show loader */ +.no-js #loader { display: none; } +.js #loader { display: block; position: absolute; left: 100px; top: 0; } +.se-pre-con { + position: fixed; + left: 0px; + top: 0px; + width: 100%; + height: 100%; + z-index: 9999; + background: url(images/loader-64x/Preloader_2.gif) center no-repeat #fff; +} + +.btn:focus, .btn:active, button:focus, button:active { + outline: none !important; + box-shadow: none !important; +} + +#image-gallery .modal-footer{ + display: block; +} + +.thumb{ + margin-top: 15px; + margin-bottom: 15px; +} +.modal-header { + border-bottom: none; !important +} +.modal-footer { + border-top: none; !important +} +.src-image { + display: none; +} + +.card { + overflow: hidden; + position: relative; + border: 1px solid #CCC; + border-radius: 8px; + text-align: center; + padding: 0; + background-color: #284c79; + color: rgb(136, 172, 217); +} + +.card .header-bg { + /* This stretches the canvas across the entire hero unit */ + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 70px; + border-bottom: 1px #FFF solid; + /* This positions the canvas under the text */ + z-index: 1; +} +.card .avatar { + position: relative; + margin-top: 15px; + z-index: 100; +} + +.card .avatar img { + width: 100px; + height: 100px; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + border-radius: 50%; + border: 5px solid rgba(0,0,30,0.8); +} |