| 1 |
/*! |
| 2 |
* Do not modify this file directly. It is compiled Sass code. |
| 3 |
* @see: jetpack/_inc/jetpack.scss |
| 4 |
*/ |
| 5 |
/* |
| 6 |
* Button mixin- creates 3d-ish button effect with correct |
| 7 |
* highlights/shadows, based on a base color. |
| 8 |
*/ |
| 9 |
#jetpack_summary_widget * { |
| 10 |
-moz-box-sizing: border-box; |
| 11 |
box-sizing: border-box; |
| 12 |
} |
| 13 |
#jetpack_summary_widget .inside { |
| 14 |
margin: 0; |
| 15 |
padding: 0; |
| 16 |
font-family: "proxima-nova", "Open Sans", Helvetica, Arial, sans-serif; |
| 17 |
} |
| 18 |
#jetpack_summary_widget .stats, |
| 19 |
#jetpack_summary_widget .widgets, |
| 20 |
#jetpack_summary_widget .wpcom-connect { |
| 21 |
padding: .75em; |
| 22 |
} |
| 23 |
#jetpack_summary_widget .wpcom-connect { |
| 24 |
background: #fafafa; |
| 25 |
text-align: center; |
| 26 |
} |
| 27 |
#jetpack_summary_widget .wpcom-connect .jp-emblem { |
| 28 |
padding: 5px 0 0 0; |
| 29 |
} |
| 30 |
#jetpack_summary_widget .wpcom-connect svg { |
| 31 |
width: 40px; |
| 32 |
height: 40px; |
| 33 |
} |
| 34 |
#jetpack_summary_widget .wpcom-connect svg path { |
| 35 |
fill: #81a844; |
| 36 |
} |
| 37 |
#jetpack_summary_widget .wpcom-connect .jp-emblem, |
| 38 |
#jetpack_summary_widget .wpcom-connect h3, |
| 39 |
#jetpack_summary_widget .wpcom-connect p { |
| 40 |
width: 100%; |
| 41 |
} |
| 42 |
#jetpack_summary_widget .wpcom-connect h3 { |
| 43 |
font-size: 1.25em; |
| 44 |
font-weight: 400; |
| 45 |
} |
| 46 |
#jetpack_summary_widget .wpcom-connect p { |
| 47 |
color: #777; |
| 48 |
margin-top: 0; |
| 49 |
padding: 0 15px; |
| 50 |
} |
| 51 |
#jetpack_summary_widget .wpcom-connect .actions { |
| 52 |
text-align: center; |
| 53 |
padding: 15px 0 10px 0; |
| 54 |
} |
| 55 |
#jetpack_summary_widget .wpcom-connect .actions small { |
| 56 |
display: block; |
| 57 |
} |
| 58 |
#jetpack_summary_widget .wpcom-connect .actions small a { |
| 59 |
color: #999; |
| 60 |
} |
| 61 |
#jetpack_summary_widget .button-jetpack { |
| 62 |
background: #81a844; |
| 63 |
border-color: #658435; |
| 64 |
color: white; |
| 65 |
box-shadow: inset 0 1px 0 #a5c672, 0 1px 0 rgba(0, 0, 0, 0.15); |
| 66 |
} |
| 67 |
#jetpack_summary_widget .button-jetpack:hover, #jetpack_summary_widget .button-jetpack:focus { |
| 68 |
background: #73963d; |
| 69 |
border-color: #57722e; |
| 70 |
color: white; |
| 71 |
box-shadow: inset 0 1px 0 #9abf60; |
| 72 |
} |
| 73 |
#jetpack_summary_widget .button-jetpack:focus { |
| 74 |
box-shadow: inset 0 1px 0 #9abf60, 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); |
| 75 |
} |
| 76 |
#jetpack_summary_widget .button-jetpack:active { |
| 77 |
background: #658435; |
| 78 |
border-color: #57722e; |
| 79 |
color: white; |
| 80 |
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); |
| 81 |
} |
| 82 |
#jetpack_summary_widget .button-jetpack[disabled], #jetpack_summary_widget .button-jetpack:disabled, #jetpack_summary_widget .button-jetpack.button-primary-disabled, #jetpack_summary_widget .button-jetpack.disabled { |
| 83 |
color: #cdd1c7 !important; |
| 84 |
background: #6b8b38 !important; |
| 85 |
border-color: #57722e !important; |
| 86 |
text-shadow: none !important; |
| 87 |
} |
| 88 |
#jetpack_summary_widget footer { |
| 89 |
background: #fafafa; |
| 90 |
padding: .75em; |
| 91 |
overflow: hidden; |
| 92 |
border-top: 1px solid #ccc; |
| 93 |
} |
| 94 |
#jetpack_summary_widget footer .protect, |
| 95 |
#jetpack_summary_widget footer .akismet { |
| 96 |
width: 50%; |
| 97 |
float: left; |
| 98 |
text-align: left; |
| 99 |
} |
| 100 |
#jetpack_summary_widget footer h3 { |
| 101 |
font-size: 1.5em; |
| 102 |
font-weight: normal; |
| 103 |
margin: 0; |
| 104 |
padding: 0; |
| 105 |
} |
| 106 |
#jetpack_summary_widget footer p { |
| 107 |
margin: 0; |
| 108 |
padding: 0; |
| 109 |
} |
| 110 |
#jetpack_summary_widget footer section { |
| 111 |
margin: 0; |
| 112 |
padding: 0; |
| 113 |
text-align: center; |
| 114 |
} |
| 115 |
|