diff --git a/index.php b/index.php index c6b6e6b4f7..5a80ce6043 100644 --- a/index.php +++ b/index.php @@ -197,6 +197,13 @@ $SIDEBAR = << + The PHP Foundation +
+

The PHP Foundation is a collective of people and organizations, united in the mission to ensure the long-term prosperity of the PHP language. +

Donate

+
+ $announcements

User Group Events

Special Thanks

diff --git a/styles/home.css b/styles/home.css index cde846fb54..3ffd63b1c8 100644 --- a/styles/home.css +++ b/styles/home.css @@ -194,3 +194,25 @@ aside.tips .social-media .icon-twitter { font-size: 1.5em; vertical-align: middle; } + +/* Unheroic button */ +.btn { + box-sizing: border-box; + padding: 0.5rem 1rem; + margin-bottom: 1rem; + border-radius: 2rem; + text-align: center; + display: inline-block; + border: none; + transition: background-color 0.2s; +} + +.btn-primary { + background-color: var(--dark-blue-color); + color: #fff !important; +} + +.btn-primary:hover, .hero-btn-primary:focus { + background-color: var(--dark-magenta-color) !important; + border-color: var(--dark-magenta-color) !important; +}