empact/app/css/app.css

44 lines
710 B
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-16 17:46:18 +07:00
height: 40px;
2015-03-10 15:24:19 +07:00
margin-bottom: 20px;
}
.info-block .img {
float: left;
2015-03-16 17:46:18 +07:00
width: 40px;
height: 40px;
2015-03-15 00:41:32 +07:00
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 {
2015-03-16 17:46:18 +07:00
font-size: 30px;
line-height: 40px;
margin: 0;
2015-03-10 15:24:19 +07:00
font-weight: 400;
}