25 lines
443 B
CSS
25 lines
443 B
CSS
|
*{
|
||
|
margin: 0;padding: 0;
|
||
|
}
|
||
|
.content-warp{
|
||
|
border-top: 1px solid #eee;
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
.content-warp .container{
|
||
|
margin: auto;
|
||
|
}
|
||
|
.content-warp h1{
|
||
|
width: 100%;
|
||
|
font-size: 34px;
|
||
|
color: #323031;
|
||
|
line-height: 52px;
|
||
|
margin: 25px 0;
|
||
|
letter-spacing: 0.25rem;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
.content-warp p{
|
||
|
font-size: 16px;
|
||
|
color: #787878;
|
||
|
line-height: 30px;
|
||
|
margin-bottom: 28px;
|
||
|
}
|