om/public/style/style.less

169 lines
2.8 KiB
Plaintext
Raw Normal View History

2018-11-21 14:42:59 +01:00
@color: #0046a0;
//header
.om-header-container{
position: fixed;
top: 0px;
z-index: 1;
width: 100%;
2018-11-22 11:48:01 +01:00
display: block;
2018-11-21 14:42:59 +01:00
}
.om-header{
justify-content:space-between;
display: flex;
padding-left: 2%;
padding-right: 2%;
height: 8%;
background-color: @color;
}
.om-searchbar{
display: inline-block;
padding-bottom: 0%;
margin: 3%;
}
//content
.om-content{
margin: 10px;
margin-top: 75px;
margin-bottom: 70px;
a{
color: @color;
&:hover{color:@color;}
}
}
.om-card{
margin: 10px;
margin-bottom: 20px;
padding: 20px;
}
.om-card-footer{
justify-content: space-between;
display: flex;
}
2018-11-21 14:42:59 +01:00
.om-btn{
background-color: @color;
2018-11-22 11:48:01 +01:00
color: white;
2018-11-21 14:42:59 +01:00
}
2018-11-22 11:48:01 +01:00
.msg-head{
2018-11-28 14:33:31 +01:00
margin-top: 10px;
margin-bottom: 10px;
2018-11-22 11:48:01 +01:00
img{
float: right
}
}
.om-user-line{
display: flex;
width: 80%;
2018-11-22 11:48:01 +01:00
i{
margin-right: 2%;
}
}
2018-11-21 14:42:59 +01:00
//footer
.om-nav{
position:fixed;
bottom: 0;
height: 8%;
width: 100%;
background-color: @color;
i{
color: white;
}
}
// bookmark
.bookmark-headline{
margin: 10px;
}
//empty state
.empty-state{
margin: 40px;
margin-top: 40%;
color: #6c757d;
text-align: center;
i{
font-size: 50px;
margin: 10px;
}
}
2018-11-21 14:42:59 +01:00
2018-12-12 14:40:27 +01:00
// profil
.profil-text {
margin-top: 70px;
margin-bottom: 10px;
text-align: center;
display: block;
margin-left: auto;
margin-right: auto;
}
.profil-card {
margin: 10px;
margin-top: -80px;
position: relative;
z-index:1;
}
.profil-img {
background-color: @color;
border-style: solid;
border-color: @color;
border-width: thick;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
display: block;
margin-left: auto;
margin-right: auto;
position: relative;
z-index:2;
}
.edit-item {
color: @color;
margin-top: 10px;
margin-right: 10px;
i {
float: right;
font-size: 30px;
}
}
2018-12-12 15:59:30 +01:00
.om-tab {
2018-12-12 14:40:27 +01:00
font-size: 16px;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
}
2019-02-07 13:24:37 +01:00
.om-tablinks{
background: 0;
border: 0;
}
2018-11-21 14:42:59 +01:00
//bmd changes
2018-11-22 11:48:01 +01:00
//border
.form-group.is-focused .form-control .custom-file-control, .form-control, .is-focused .custom-file-control, .is-focused .form-control {
background-image: linear-gradient(0deg, @color 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,rgba(0,0,0,.26) 1px,transparent 0);
2018-11-21 14:42:59 +01:00
}
2018-11-22 11:48:01 +01:00
//checkbox
.checkbox label input[type=checkbox]:checked+.checkbox-decorator .check:before, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check:before {
color: @color;
}
2018-11-22 11:48:01 +01:00
.checkbox label input[type=checkbox]:checked+.checkbox-decorator .check, label.checkbox-inline input[type=checkbox]:checked+.checkbox-decorator .check {
color: @color;
border-color: @color;
}
2018-11-22 11:48:01 +01:00
//label
.is-focused [class*="bmd-label"], .is-focused[class^=bmd-label]{
color: @color;
2018-11-22 11:48:01 +01:00
}