empact/app/styles/app.css

74 lines
1.2 KiB
CSS
Raw Normal View History

2015-03-10 19:19:59 +07:00
* {
box-sizing: border-box;
2015-03-16 15:36:27 +07:00
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
2015-03-16 15:47:53 +07:00
font-size: 16px;
line-height: 20px;
2015-03-10 19:19:59 +07:00
}
2015-03-07 21:13:47 +07:00
.app {
width: 100%;
}
.content {
2015-03-15 17:39:33 +07:00
float: left;
2015-03-16 15:47:53 +07:00
width: calc(100% - 190px);
margin-top: 20px;
2015-03-07 16:44:50 +07:00
}
2015-03-07 21:13:47 +07:00
.content .left, .content .right {
2015-03-08 00:22:32 +07:00
float: left;
2015-03-07 16:44:50 +07:00
width: 50%;
}
2015-03-10 15:24:19 +07:00
.info-block {
width: 100%;
2015-03-15 00:41:32 +07:00
height: 50px;
2015-03-10 15:24:19 +07:00
margin-bottom: 20px;
}
.info-block .img {
float: left;
2015-03-15 00:41:32 +07:00
width: 50px;
height: 50px;
background-color: #ddd;
2015-03-10 15:24:19 +07:00
background-position: center;
background-size: 100% auto;
2015-03-15 00:41:32 +07:00
margin-right: 10px;
2015-03-16 15:36:15 +07:00
border-radius: 2px;
2015-03-10 15:24:19 +07:00
}
.info-block h1 {
font-size: 32px;
2015-03-15 00:41:32 +07:00
line-height: 50px;
margin: 0;
2015-03-10 15:24:19 +07:00
font-weight: 400;
}
2015-03-14 22:54:27 +07:00
.week-selector {
position: absolute;
2015-03-15 17:39:33 +07:00
top: 20px;
right: 20px;
font-size: 32px;
line-height: 50px;
color: #666;
2015-03-14 22:54:27 +07:00
}
.week-selector .week {
2015-03-15 19:10:02 +07:00
position: relative;
2015-03-15 17:39:33 +07:00
display: inline-block;
padding: 0 6px;
margin: 0 3px;
2015-03-14 22:54:27 +07:00
}
2015-03-15 19:10:02 +07:00
.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;
2015-03-14 22:54:27 +07:00
}