member_webapp/src/styles.scss

417 lines
9.2 KiB
SCSS
Raw Normal View History

2018-04-06 06:59:49 +00:00
/* You can add global styles to this file, and also import other style files */
2018-05-23 03:35:14 +00:00
//Logo
.landing-wrapper #header .header-top .logo {
display: inline-block;
vertical-align: middle;
width: 200px;
height: 30px;
background: url("/assets/layout/images/overFlow_CI_white_200_30.png") top left no-repeat !important;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.landing-wrapper .header .header-top .logo {
background: url("/assets/layout/images/overFlow_CI_white_200_30.png") top left no-repeat !important;
background-size: 200px 30px; } }
.layout-container .topbar .logo {
display: inline-block;
vertical-align: middle;
width: 200px;
height: 30px;
background: url("/assets/layout/images/overFlow_CI_white_200_30.png") top left no-repeat !important;
background-size: 200px 30px; }
//top menu-button
.layout-container .topbar .topbar-right #menu-button {
color: #ffffff;
display: inline-block;
vertical-align: middle;
height: 36px;
margin-right: 10px;
position: relative;
//left: -16px;
left: 16px !important;
top: 3px;
background-color: transparent !important;
2018-04-11 10:51:50 +00:00
2018-05-23 03:35:14 +00:00
}
.layout-container .topbar .topbar-right #menu-button:hover {
color: #e8e8e8;}
.layout-container .topbar .topbar-right #menu-button i {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 1.5em;
/* Preferred icon size */
display: inline-block;
width: 1em;
height: 1em;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
text-indent: 0;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
font-size: 36px; }
.layout-container .topbar .topbar-right #menu-button i:before {
//content: "chevron_left";
content: "menu" !important;
}
2018-04-11 10:51:50 +00:00
//auth style
.login-body {
//background: url("../images/login/login.png") top left no-repeat #f7f7f7;
2018-05-16 08:14:43 +00:00
//background: url("/assets/layout/images/login11.jpg") center no-repeat #f7f7f7 !important;
background: #ffffff;
2018-05-03 12:30:32 +00:00
margin: 0 !important;
padding: 0 !important;
min-height: 100vh !important;
2018-04-12 05:31:31 +00:00
background-size: cover !important;
2018-05-03 12:30:32 +00:00
background-attachment: fixed !important;
2018-04-11 10:51:50 +00:00
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.login-body {
//background: url("../images/login/login2x.png") top left no-repeat #f7f7f7;
2018-05-16 08:14:43 +00:00
//background: url("/assets/layout/images/login11.jpg") top left no-repeat #f7f7f7 !important;
background: #ffffff;
2018-04-11 10:51:50 +00:00
}
2018-04-12 09:06:29 +00:00
}
2018-05-16 08:14:43 +00:00
.login-descript{
background: #203976;
color: #ffffff;
}
2018-05-03 12:30:32 +00:00
.login-panel {
margin: 0 !important;
2018-05-16 08:14:43 +00:00
width: 450px !important;
min-height: 300px !important;
2018-05-03 12:30:32 +00:00
.ui-g {
.ui-g-12 {
a {
color: #5e6166;
font-size: 0.8em;
}
a:hover{
color: rgb(18, 86, 233);
}
2018-05-16 08:14:43 +00:00
.recaptcha-align{
margin: 0 auto;
}
2018-05-03 12:30:32 +00:00
}
.ui-g-12.ui-g-padding-15 {
padding: 15px 40px !important;
}
}
2018-05-16 08:14:43 +00:00
.ui-message{
text-align: left;
}
2018-05-03 12:30:32 +00:00
}
2018-04-12 09:06:29 +00:00
2018-05-03 12:30:32 +00:00
.login-table {
vertical-align: middle;
text-align: left;
margin-left: auto;
margin-right: auto;
margin: auto;
height: 100vh;
border-collapse: collapse;
border-spacing: 0;
}
2018-04-17 11:43:37 +00:00
.ui-button-secondary{
background-color : #f5f6f8 !important;
.ui-button-icon-left{
color: #5e6166 !important;
}
}
2018-04-12 09:06:29 +00:00
.ui-button-secondary:hover{
2018-04-17 11:43:37 +00:00
color : #5e6166 !important;
2018-04-12 09:06:29 +00:00
}
.ui-button-large {
font-size: 1.6em !important;
2018-04-12 09:54:15 +00:00
}
2018-04-17 11:43:37 +00:00
.ui-bottom-space-10{
margin-bottom: 10px;
}
2018-05-25 03:46:04 +00:00
.ui-bottom-space-20{
margin-bottom: 20px;
}
2018-04-17 11:43:37 +00:00
.ui-top-space-10{
margin-top: 10px;
}
2018-04-18 14:14:41 +00:00
.ui-top-space--0-5em{
margin-top: -0.5em;
}
.ui-left-space-10{
margin-left: 10px;
}
2018-04-17 11:43:37 +00:00
.ui-float-right{
float:right;
}
.ui-button-width-fit{
width: auto !important;
}
.ui-nopad{
padding: 0px !important;
.ui-accordion-content{
padding: 0px !important;
border: 0px !important;
}
}
.ui-width-100-{
.ui-orderlist-list-container{
width : 100% !important;
}
}
.ui-no-border{
border: 0px !important;
.ui-tree{
border : 0px !important;
}
}
.ui-s-button{
.ui-button-text {
padding: 2px !important;
.ui-button-text-icon-left {
padding: 2px 12px 2px 4px !important;
}
.ui-button-text-icon-right {
padding: 2px 4px 2px 12px !important;
}
}
font-size: 0.8em !important;
2018-04-18 14:14:41 +00:00
}
2018-04-19 06:25:27 +00:00
2018-04-18 14:14:41 +00:00
.ui-status-icon{
//margin-top: 3px;
//position: static;
//display: inline-block;
vertical-align: middle;
&.ui-status-info {
2018-04-19 06:25:27 +00:00
color: #2196F3 !important;
2018-04-18 14:14:41 +00:00
}
&.ui-status-warn {
2018-04-19 06:25:27 +00:00
color: #ffc107 !important;
2018-04-18 14:14:41 +00:00
}
&.ui-status-error {
2018-04-19 06:25:27 +00:00
color: #e62a10 !important;
2018-04-18 14:14:41 +00:00
}
&.ui-status-fatal {
2018-04-19 06:25:27 +00:00
color: #212121 !important;
2018-04-18 14:14:41 +00:00
}
&.ui-status-success {
2018-04-19 06:25:27 +00:00
color: #8BC34A !important;
}
}
2018-04-26 12:27:36 +00:00
.ui-img-profile{
min-width: 250px !important;
@media (max-width: 640px) {
text-align: center;
}
}
.ui-img-profile-box {
width: 244px !important;
padding: 12px;
box-sizing: border-box;
display: block;
background-color: #ffffff;
border: 1px solid #bdbdbd;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
margin: auto;
2018-04-19 06:25:27 +00:00
2018-04-26 12:27:36 +00:00
img {
object-fit: cover;
width:220px;
height:220px;
}
2018-04-19 06:25:27 +00:00
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
2018-04-19 13:25:17 +00:00
2018-04-19 06:25:27 +00:00
}
@media (max-width: 1024px) {
}
@media (max-width: 640px) {
2018-04-18 14:14:41 +00:00
}
2018-04-19 13:25:17 +00:00
}
2018-04-26 12:27:36 +00:00
2018-04-19 13:25:17 +00:00
.ui-sensors-datalist {
.ui-sensors{
.ui-sensor{
display:inline-block;
margin: auto;
padding:9px;
text-align: center;
.ui-icon-lg{
font-size: 3em;
margin: 3px;
}
}
.ui-sensors-details{
display:inline-block;
margin: auto 0;
}
}
}
2018-04-19 15:04:58 +00:00
.ui-key-value {
of-key-value{
width: 100%;
2018-04-20 08:35:36 +00:00
min-width: 250px;
margin: 0 -5px;
2018-04-19 15:04:58 +00:00
}
2018-05-23 06:27:37 +00:00
.of-key-value-div{
width: 100%;
min-width: 250px;
margin: 13px 0;
}
2018-04-19 15:04:58 +00:00
div {
width: 100%;
2018-04-20 08:35:36 +00:00
margin: 0;
padding: 0;
2018-04-19 15:04:58 +00:00
}
span {
font-weight: bold;
2018-04-20 08:35:36 +00:00
width: 105px ;
display: inline-block;
padding: 5px;
margin: 0;
2018-04-19 15:04:58 +00:00
text-align: right;
2018-04-20 08:35:36 +00:00
//background: red;
2018-04-19 15:04:58 +00:00
}
span::after {
content: " : ";
}
2018-04-20 08:35:36 +00:00
span.ng-star-inserted, a.ng-star-inserted>span {
2018-04-19 15:04:58 +00:00
font-weight: normal;
text-align: left;
2018-04-20 08:35:36 +00:00
display: inline-block;
padding: 5px;
margin: 0;
width: 50%;
//background: blue;
2018-04-19 15:04:58 +00:00
}
span.ng-star-inserted::after, a.ng-star-inserted>span::after {
content: " ";
2018-05-23 06:27:37 +00:00
}
input {
border: 0px;
background : #f5f5f5;
padding: 5px;
}
2018-04-19 15:04:58 +00:00
}
.ui-bottom-border-1 {
border-bottom: #bdbdbd 1px solid;
}
2018-04-29 11:12:08 +00:00
.ui-bottom-border-sm-1 {
@media (max-width: 640px) {
border-bottom: #bdbdbd 1px solid;
}
}
2018-04-25 12:08:19 +00:00
/*.layout-container .ultima-menu{
width: 100% ;
}*/
2018-04-25 11:14:54 +00:00
.layout-container .ultima-menu .ui-app-noti{
h4 {
line-height: 1.2em;
margin: 0;
width: 100%;
2018-04-25 12:08:19 +00:00
border-bottom: #bdbdbd 1px solid;
2018-04-25 11:14:54 +00:00
padding: 7px 10px;
color: #bdbdbd;
}
2018-04-25 12:08:19 +00:00
@media (max-width: 1024px){
h4 {
display: none;
}
li{
border-top: #bdbdbd 1px solid;
}
}
2018-04-25 11:14:54 +00:00
li{
padding: 0 ;
width: 100%;
border-bottom: #bdbdbd 1px solid;
a {
display: block;
.ui-app-noti-title {
font-weight: bold;
float: left;
}
.ui-app-noti-date{
float: right;
font-size: 0.8em;
color: #5e6166;
}
.ui-app-noti-content{
float: left;
overflow: hidden;
2018-04-22 11:10:12 +00:00
}
}
}
2018-04-26 12:27:36 +00:00
}
.ui-button-photo-add {
vertical-align: text-bottom;
float: right;
margin-top: -30px;
margin-right: -5px;
2018-04-27 06:28:25 +00:00
}
.ui_orderlist_controls_none {
.ui-orderlist-controls {
display: none !important;
}
2018-04-29 11:12:08 +00:00
}
.layout-container .layout-menu .profile .profile-image{
border-radius: 50%;
}
.layout-container .topbar-items .profile-image{
border-radius: 50%;
2018-05-14 06:53:16 +00:00
}
body .ui-progressbar .ui-progressbar-value {
height: 0 !important;
2018-05-16 08:14:43 +00:00
}
.font-s{
font-size: 80%;
2018-05-18 08:30:20 +00:00
}
2018-05-18 10:12:36 +00:00
.layout-content {
min-height: calc(100vh - 215px);
}
2018-05-18 08:30:20 +00:00
.footer {
2018-05-18 10:12:36 +00:00
height: 50px;
2018-05-26 09:08:40 +00:00
}
.block-icon {
position: absolute;
top: 40%;
left: 45%;
font-size: 50px;
color: #ffffff !important;
}
.ui-panel {
border: none !important;
2018-05-18 10:12:36 +00:00
}