| 1 |
#jetpack_connection_widget * { |
| 2 |
box-sizing: border-box; |
| 3 |
} |
| 4 |
|
| 5 |
#jetpack_connection_widget.postbox .inside { |
| 6 |
padding: 0; |
| 7 |
} |
| 8 |
|
| 9 |
.jp-connection-widget { |
| 10 |
box-sizing: border-box; |
| 11 |
padding: 0; |
| 12 |
} |
| 13 |
.jp-connection-widget__logo { |
| 14 |
display: flex; |
| 15 |
flex-direction: row; |
| 16 |
align-items: flex-start; |
| 17 |
margin: 1rem 1rem; |
| 18 |
} |
| 19 |
.jp-connection-widget__image { |
| 20 |
width: 100%; |
| 21 |
} |
| 22 |
.jp-connection-widget__heading { |
| 23 |
font-size: 1.5rem; |
| 24 |
font-weight: 600; |
| 25 |
line-height: 29px; |
| 26 |
letter-spacing: -0.02rem; |
| 27 |
color: #000; |
| 28 |
margin: 0.5rem 1rem; |
| 29 |
} |
| 30 |
.jp-connection-widget__paragraph { |
| 31 |
font-size: 0.875rem; |
| 32 |
font-weight: 400; |
| 33 |
margin: 0.75rem 1rem 1.5rem 1rem; |
| 34 |
} |
| 35 |
.jp-connection-widget__tos-blurb { |
| 36 |
margin: 1rem; |
| 37 |
font-size: 0.75rem; |
| 38 |
} |
| 39 |
.jp-connection-widget__button { |
| 40 |
display: flex; |
| 41 |
flex-direction: row; |
| 42 |
justify-content: center; |
| 43 |
align-items: center; |
| 44 |
padding: 8px 24px; |
| 45 |
background: #008710; |
| 46 |
border-color: #008710; |
| 47 |
border-radius: 4px; |
| 48 |
font-size: 0.875rem; |
| 49 |
font-weight: 600; |
| 50 |
cursor: pointer; |
| 51 |
transition: all 150ms ease-in-out; |
| 52 |
color: #fff; |
| 53 |
text-decoration: none; |
| 54 |
margin: 0 1rem; |
| 55 |
} |
| 56 |
.jp-connection-widget__button:hover, .jp-connection-widget__button:active { |
| 57 |
background: #004515; |
| 58 |
border-color: #004515; |
| 59 |
color: #fff; |
| 60 |
} |
| 61 |
|