| 1 |
.animation-content { display:flex; justify-content: center;} |
| 2 |
.logo { width: 50px; } |
| 3 |
body { |
| 4 |
font-family: 'Onest', 'Inter', sans-serif; |
| 5 |
margin: 0; |
| 6 |
padding: 0; |
| 7 |
display: flex; |
| 8 |
flex-direction: column; |
| 9 |
align-items: center; |
| 10 |
justify-content: center; |
| 11 |
background-color: #f5f5f5; |
| 12 |
color: #333; |
| 13 |
} |
| 14 |
.header { |
| 15 |
background-color: #fff; |
| 16 |
width: 100%; |
| 17 |
padding: 20px 0; |
| 18 |
display: flex; |
| 19 |
align-items: center; |
| 20 |
justify-content: center; |
| 21 |
border-bottom: 1px solid #eee; |
| 22 |
} |
| 23 |
.header img { |
| 24 |
height: 30px; |
| 25 |
} |
| 26 |
.content { |
| 27 |
text-align: center; |
| 28 |
margin: 0px 0px; |
| 29 |
} |
| 30 |
.content h1 { |
| 31 |
font-size: 2em; |
| 32 |
margin-bottom: 20px; |
| 33 |
} |
| 34 |
.content p { |
| 35 |
font-size: 1.2em; |
| 36 |
margin-bottom: 40px; |
| 37 |
} |
| 38 |
.content .button { |
| 39 |
display: inline-block; |
| 40 |
padding: 12px 32px; |
| 41 |
font-size: 16px; |
| 42 |
line-height: 1.5; |
| 43 |
font-weight: 600; |
| 44 |
text-decoration: none; |
| 45 |
background-color: #5D33FB; |
| 46 |
color: #fff; |
| 47 |
border: none; |
| 48 |
border-radius: 8px; |
| 49 |
cursor: pointer; |
| 50 |
transition: background-color 0.15s ease; |
| 51 |
} |
| 52 |
.content .button:hover { |
| 53 |
background-color: #4726c9; |
| 54 |
} |
| 55 |
.images { |
| 56 |
display: flex; |
| 57 |
justify-content: center; |
| 58 |
align-items: center; |
| 59 |
gap: 20px; |
| 60 |
} |
| 61 |
.images img { |
| 62 |
width: 300px; |
| 63 |
border-radius: 10px; |
| 64 |
} |
| 65 |
.footer { |
| 66 |
margin-top: 40px; |
| 67 |
font-size: 1em; |
| 68 |
color: #666; |
| 69 |
} |
| 70 |
|
| 71 |
/* Onest (with Inter fallback) for the plugin's About page UI. |
| 72 |
Explicit selectors so Bootstrap's font-family does not win by specificity. */ |
| 73 |
.navbar-brand, |
| 74 |
.content, |
| 75 |
.content h1, |
| 76 |
.content p, |
| 77 |
.content .button { |
| 78 |
font-family: 'Onest', 'Inter', sans-serif; |
| 79 |
} |