42 lines
673 B
CSS
42 lines
673 B
CSS
.todohome {
|
|
margin: 130px 0 40px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.todohome h1 {
|
|
position: absolute;
|
|
top: -140px;
|
|
width: 100%;
|
|
font-size: 80px;
|
|
font-weight: 200;
|
|
text-align: center;
|
|
color: #b83f45;
|
|
-webkit-text-rendering: optimizeLegibility;
|
|
-moz-text-rendering: optimizeLegibility;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
.todohome section {
|
|
padding-top: 1px;
|
|
text-align: center;
|
|
}
|
|
|
|
.todohome h2 {
|
|
padding-bottom: 48px;
|
|
font-size: 28px;
|
|
font-weight: 300;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.todohome .button {
|
|
padding: 13px 45px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: white;
|
|
border-radius: 5px;
|
|
background: #d83f45;
|
|
}
|
|
|
|
.todohome a.button {
|
|
text-decoration: none;
|
|
}
|