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

44 lines
710 B
CSS
Raw Normal View History

2015-03-10 12:19:59 +00:00
* {
box-sizing: border-box;
2015-03-16 08:36:27 +00:00
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
2015-03-16 08:47:53 +00:00
font-size: 16px;
line-height: 20px;
2015-03-10 12:19:59 +00:00
}
2015-03-07 14:13:47 +00:00
.app {
width: 100%;
}
.content {
2015-03-15 10:39:33 +00:00
float: left;
2015-03-16 08:47:53 +00:00
width: calc(100% - 190px);
margin-top: 20px;
2015-03-07 09:44:50 +00:00
}
2015-03-07 14:13:47 +00:00
.content .left, .content .right {
2015-03-07 17:22:32 +00:00
float: left;
2015-03-07 09:44:50 +00:00
width: 50%;
}
2015-03-10 08:24:19 +00:00
.info-block {
width: 100%;
2015-03-16 10:46:18 +00:00
height: 40px;
2015-03-10 08:24:19 +00:00
margin-bottom: 20px;
}
.info-block .img {
float: left;
2015-03-16 10:46:18 +00:00
width: 40px;
height: 40px;
2015-03-14 17:41:32 +00:00
background-color: #ddd;
2015-03-10 08:24:19 +00:00
background-position: center;
background-size: 100% auto;
2015-03-14 17:41:32 +00:00
margin-right: 10px;
2015-03-16 08:36:15 +00:00
border-radius: 2px;
2015-03-10 08:24:19 +00:00
}
.info-block h1 {
2015-03-16 10:46:18 +00:00
font-size: 30px;
line-height: 40px;
margin: 0;
2015-03-10 08:24:19 +00:00
font-weight: 400;
}