| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- /*
- *Devel
- */
- table tr .selected{
- background-color: #d9edf7;
- }
- .no-scroll{
- overflow: hidden;
- }
- /*
- * Bootstrap Overwrite
- */
- .form-group div{
- padding: 0px;
- }
- .form-control{
- border-radius: 0px !important;
- }
- .btn{
- border-radius: 0px !important;
- }
- body{
- font-family: Ubuntu;
- font-size: 1pc;
- }
- /*
- -------------------------------------------------------
- */
- textarea{
- resize: vertical;
- min-height: 200px
- }
- .data-table table{
- width: 100% !important;
- }
- #modal > div{
- width: 70%;
- }
- #modal table{
- width: 100%;
- }
- #modal table td{
- white-space: nowrap;
- }
- /*
- _____ _____ _____ ______ ____ _____
- / ____|_ _| __ \| ____| _ \ /\ | __ \
- | (___ | | | | | | |__ | |_) | / \ | |__) |
- \___ \ | | | | | | __| | _ < / /\ \ | _ /
- ____) |_| |_| |__| | |____| |_) / ____ \| | \ \
- |_____/|_____|_____/|______|____/_/ \_\_| \_\
- */
- #wrapper {
- padding-left: 0;
- }
- #sidebar-wrapper {
- background-color: #000 !important;
- }
- #wrapper.toggled {
- padding-left: 250px;
- }
- #sidebar-wrapper {
- /*z-index: 1000;*/
- position: fixed;
- left: 250px;
- width: 0;
- height: 100%;
- margin-left: -250px;
- overflow-y: auto;
- }
- #wrapper.toggled #sidebar-wrapper {
- width: 250px;
- }
- .nav-ident li a{
- padding-left: 10%;
- }
- #page-content-wrapper {
- width: 100%;
- position: absolute;
- padding: 15px;
- }
- #wrapper .toggled #page-content-wrapper {
- position: absolute;
- margin-right: -250px;
- }
- /*
- -------------------------------------------------------
- */
- .logo{
- text-align: center;
- margin-top: 15px;
- }
- .logo > img {
- width:50%;
- }
- /*
- -------------------------------------------------------
- */
- /*
- -------------------------------------------------------
- */
- .search-nav{
- padding: 10px;
- text-align: center;
- }
- .search-nav > input{
- margin: 0 auto;
- width: 95%;
- border-radius: 0px;
- }
- /*
- -------------------------------------------------------
- */
- /*
- *-----------------------------------------------------
- *Sidebar responsiveness
- */
- @media(min-width:768px) {
- #wrapper {
- padding-left: 250px;
- }
- #wrapper.toggled {
- padding-left: 0;
- }
- #sidebar-wrapper {
- width: 250px;
- }
- #wrapper.toggled #sidebar-wrapper {
- width: 0;
- }
- #page-content-wrapper {
- padding: 20px;
- position: relative;
- }
- #wrapper.toggled #page-content-wrapper {
- position: relative;
- margin-right: 0;
- }
- }
- /*
- _ _ ______ ^ _____ ______ _____
- | | | | ____| / \ | __ \| ____| __ \
- | |__| | |__ / \ | | | | |__ | |__) |
- | __ | __| / /_\ \ | | | | __| | _ /
- | | | | |____ / _____ \| |__| | |____| | \ \
- |_| |_|______/_/ \_\_____/|______|_| \_\
-
- */
- #navbar-top{
- min-height: 50px;
- }
- /*--*/
- #menu-toggle{
- }
- #menu-toggle:hover,
- #menu-toggle:focus{
- background-color:transparent;
- }
- #progress{
- margin-bottom:0px;
- height:10px;
- border-radius: 0px !important;
- }
- /* HELPER ---------------------------- */
- .round-ball{
- border-radius: 60px !important;
- font-size: 1.5em;
- position: fixed;
- padding: 20px;
- bottom: 20px;
- right: 20px;
- }
|