1
0
Fork 0
empact/app/styles/app.css

74 lines
1.2 KiB
CSS

* {
box-sizing: border-box;
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 20px;
}
.app {
width: 100%;
}
.content {
float: left;
width: calc(100% - 190px);
margin-top: 20px;
}
.content .left, .content .right {
float: left;
width: 50%;
}
.info-block {
width: 100%;
height: 50px;
margin-bottom: 20px;
}
.info-block .img {
float: left;
width: 50px;
height: 50px;
background-color: #ddd;
background-position: center;
background-size: 100% auto;
margin-right: 10px;
border-radius: 2px;
}
.info-block h1 {
font-size: 32px;
line-height: 50px;
margin: 0;
font-weight: 400;
}
.week-selector {
position: absolute;
top: 20px;
right: 20px;
font-size: 32px;
line-height: 50px;
color: #666;
}
.week-selector .week {
position: relative;
display: inline-block;
padding: 0 6px;
margin: 0 3px;
}
.week-selector .week select {
position: absolute;
top: 30%;
left: 0;
width: 100%;
visibility: hidden;
}
.week-selector .week:hover .label {
visibility: hidden;
}
.week-selector .week:hover select {
visibility: visible;
}