| 1 |
/** |
| 2 |
* Body |
| 3 |
*/ |
| 4 |
body.convertkit { |
| 5 |
background: #f9f7f4; |
| 6 |
} |
| 7 |
|
| 8 |
/** |
| 9 |
* Container |
| 10 |
*/ |
| 11 |
#convertkit-setup-wizard { |
| 12 |
max-width: 900px; |
| 13 |
margin: 0 auto; |
| 14 |
padding: 20px 0; |
| 15 |
} |
| 16 |
#convertkit-setup-wizard .wrap { |
| 17 |
margin: 10px 0; |
| 18 |
} |
| 19 |
|
| 20 |
/** |
| 21 |
* Logo |
| 22 |
*/ |
| 23 |
#convertkit-setup-wizard-header { |
| 24 |
height: 80px; |
| 25 |
background: url(../images/kit-logo.svg) center no-repeat; |
| 26 |
background-size: 75px auto; |
| 27 |
} |
| 28 |
#convertkit-setup-wizard-header h1 { |
| 29 |
margin: 0; |
| 30 |
padding: 0; |
| 31 |
font-weight: 400; |
| 32 |
color: #D2D8DD; |
| 33 |
text-indent: -9999px; |
| 34 |
} |
| 35 |
|
| 36 |
/** |
| 37 |
* Progress Bar |
| 38 |
*/ |
| 39 |
#convertkit-setup-wizard-progress { |
| 40 |
text-align: center; |
| 41 |
padding: 20px 0; |
| 42 |
} |
| 43 |
#convertkit-setup-wizard-progress ol { |
| 44 |
list-style: none; |
| 45 |
margin: 0; |
| 46 |
padding: 0; |
| 47 |
} |
| 48 |
#convertkit-setup-wizard-progress li { |
| 49 |
position: relative; |
| 50 |
display: inline-block; |
| 51 |
width: 135px; |
| 52 |
text-align: center; |
| 53 |
line-height: 3em; |
| 54 |
} |
| 55 |
#convertkit-setup-wizard-progress li:after { |
| 56 |
position: absolute; |
| 57 |
display: block; |
| 58 |
z-index: 1; |
| 59 |
top: -2px; |
| 60 |
left: -65px; |
| 61 |
height: 2px; |
| 62 |
width: 135px; |
| 63 |
content: ""; |
| 64 |
background-color: #dfdfdf; |
| 65 |
} |
| 66 |
#convertkit-setup-wizard-progress li:before { |
| 67 |
position: absolute; |
| 68 |
z-index: 2; |
| 69 |
top: -6px; |
| 70 |
left: 65px; |
| 71 |
height: 10px; |
| 72 |
width: 10px; |
| 73 |
border-radius: 1.2em; |
| 74 |
border: none; |
| 75 |
line-height: 1.2em; |
| 76 |
content: " "; |
| 77 |
background-color: #dfdfdf; |
| 78 |
} |
| 79 |
#convertkit-setup-wizard-progress li:first-child:after { |
| 80 |
display: none; |
| 81 |
} |
| 82 |
#convertkit-setup-wizard-progress li.done { |
| 83 |
color: #1c9bd7; |
| 84 |
} |
| 85 |
#convertkit-setup-wizard-progress li.done:after, |
| 86 |
#convertkit-setup-wizard-progress li.done:before { |
| 87 |
background-color: #1c9bd7; |
| 88 |
} |
| 89 |
|
| 90 |
/** |
| 91 |
* Body |
| 92 |
*/ |
| 93 |
#convertkit-setup-wizard-body { |
| 94 |
background-color: #fff; |
| 95 |
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); |
| 96 |
} |
| 97 |
|
| 98 |
/** |
| 99 |
* Step X of Y |
| 100 |
*/ |
| 101 |
#convertkit-setup-wizard-step { |
| 102 |
color: #8c8f9a; |
| 103 |
font-size: 15px; |
| 104 |
} |
| 105 |
|
| 106 |
/** |
| 107 |
* Content |
| 108 |
*/ |
| 109 |
#convertkit-setup-wizard-content { |
| 110 |
padding: 80px 80px 0 80px; |
| 111 |
} |
| 112 |
#convertkit-setup-wizard-content h1 { |
| 113 |
margin: 0 0 20px 0; |
| 114 |
} |
| 115 |
#convertkit-setup-wizard-content hr { |
| 116 |
margin: 40px 0 0 0; |
| 117 |
padding: 0 0 40px 0; |
| 118 |
border-bottom: none; |
| 119 |
} |
| 120 |
#convertkit-setup-wizard-content p { |
| 121 |
font-size: 16px; |
| 122 |
} |
| 123 |
#convertkit-setup-wizard-content p.description { |
| 124 |
font-size: 13px; |
| 125 |
} |
| 126 |
#convertkit-setup-wizard-content a.button, |
| 127 |
#convertkit-setup-wizard-content button, |
| 128 |
#convertkit-setup-wizard-footer a.button, |
| 129 |
#convertkit-setup-wizard-footer button { |
| 130 |
font-weight: 500; |
| 131 |
font-size: 16px; |
| 132 |
} |
| 133 |
|
| 134 |
/** |
| 135 |
* Content Grid |
| 136 |
*/ |
| 137 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-grid { |
| 138 |
display: grid; |
| 139 |
grid-template-columns: repeat(2, 1fr); |
| 140 |
column-gap: 20px; |
| 141 |
} |
| 142 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-grid > div { |
| 143 |
text-align: center; |
| 144 |
padding: 20px; |
| 145 |
background-color: #fcfcfc; |
| 146 |
border: 1px solid #ccc; |
| 147 |
border-radius: 5px; |
| 148 |
cursor: pointer; |
| 149 |
} |
| 150 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-grid > div span { |
| 151 |
display: block; |
| 152 |
} |
| 153 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-grid > div span.description { |
| 154 |
margin: 20px 0 0 0; |
| 155 |
color: #646970; |
| 156 |
font-size: 13px; |
| 157 |
} |
| 158 |
|
| 159 |
#convertkit-setup-wizard-content > div { |
| 160 |
margin: 0 0 40px 0; |
| 161 |
} |
| 162 |
#convertkit-setup-wizard-content > div label { |
| 163 |
display: block; |
| 164 |
margin-bottom: 10px; |
| 165 |
font-size: 16px; |
| 166 |
font-weight: 500; |
| 167 |
} |
| 168 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-selection { |
| 169 |
display: grid; |
| 170 |
grid-template-columns: repeat(2, 1fr); |
| 171 |
column-gap: 20px; |
| 172 |
} |
| 173 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-selection label { |
| 174 |
text-align: center; |
| 175 |
padding: 20px; |
| 176 |
background-color: #fcfcfc; |
| 177 |
border: 1px solid #ccc; |
| 178 |
border-radius: 5px; |
| 179 |
cursor: pointer; |
| 180 |
} |
| 181 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-selection label span { |
| 182 |
display: block; |
| 183 |
} |
| 184 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-selection label span.description { |
| 185 |
margin: 20px 0 0 0; |
| 186 |
color: #646970; |
| 187 |
font-size: 13px; |
| 188 |
font-weight: 400; |
| 189 |
font-style: italic; |
| 190 |
} |
| 191 |
#convertkit-setup-wizard-content .convertkit-setup-wizard-selection label input[type=radio] { |
| 192 |
margin: 20px 0 0 0; |
| 193 |
} |
| 194 |
|
| 195 |
/** |
| 196 |
* Footer |
| 197 |
*/ |
| 198 |
#convertkit-setup-wizard-footer { |
| 199 |
display: grid; |
| 200 |
grid-template-columns: repeat(2,1fr); |
| 201 |
grid-template-areas: "left right"; |
| 202 |
padding: 40px 80px; |
| 203 |
} |
| 204 |
#convertkit-setup-wizard-footer .left { |
| 205 |
grid-area: left; |
| 206 |
text-align: left; |
| 207 |
} |
| 208 |
#convertkit-setup-wizard-footer .right { |
| 209 |
grid-area: right; |
| 210 |
text-align: right; |
| 211 |
} |
| 212 |
|
| 213 |
/** |
| 214 |
* Exit Link |
| 215 |
*/ |
| 216 |
#convertkit-setup-wizard-exit-link { |
| 217 |
display: block; |
| 218 |
margin: 80px 0; |
| 219 |
text-align: center; |
| 220 |
font-size: 14px; |
| 221 |
} |
| 222 |
#convertkit-setup-wizard-exit-link a { |
| 223 |
color: #8c8f9a; |
| 224 |
} |
| 225 |
|
| 226 |
/** |
| 227 |
* Modal View |
| 228 |
*/ |
| 229 |
body.convertkit-modal { overflow: hidden; } |
| 230 |
body.convertkit-modal #convertkit-setup-wizard { |
| 231 |
width: 100%; |
| 232 |
max-width: 100%; |
| 233 |
margin: 0; |
| 234 |
padding: 0; |
| 235 |
} |
| 236 |
body.convertkit-modal #convertkit-setup-wizard .wrap { |
| 237 |
margin: 0; |
| 238 |
} |
| 239 |
body.convertkit-modal #convertkit-setup-wizard-body { |
| 240 |
box-shadow: none; |
| 241 |
} |
| 242 |
body.convertkit-modal #convertkit-setup-wizard-content { |
| 243 |
padding: 20px 20px 0 20px; |
| 244 |
} |
| 245 |
body.convertkit-modal #convertkit-setup-wizard-footer { |
| 246 |
padding: 0 20px 20px 20px; |
| 247 |
} |
| 248 |
|