diff --git a/about-us.html b/about-us.html index 9c65ea5a..5dbc5c5d 100755 --- a/about-us.html +++ b/about-us.html @@ -171,24 +171,51 @@

Community Goals

-
+
+
+
+
+

Projects

+

Sugar Labs is working on a few projects focused on delivering specific goals in a defined time period. Below are some of our premier projects:

+
+
+
-
-
-
-
-

Projects

-

Sugar Labs is working on a few projects focused on delivering specific goals in a defined time period. The "Projects" panel in the Sugar Labs wiki sidebar holds our premier projects. Please also see these project home pages: -

-

-
-
+ +
+
+

Sugar on a Stick

+

A portable version of Sugar that can run from a USB stick without installation.

+ + + +
+
+ +
+
+

Summer of Code

+

A program where students collaborate on open-source projects under expert mentorship.

+ + +
@@ -233,13 +260,15 @@

LOCAL LABS

Roadmap

The Sugar Community roadmap is used to guide our community efforts: -

    +
    +
    • Mission, Vision, Values
    • Distribution
    • Deployments
    • Quality Assurance
    • Infrastructure
    +

diff --git a/css/custom.css b/css/custom.css index 76c2e01e..84024010 100644 --- a/css/custom.css +++ b/css/custom.css @@ -358,3 +358,73 @@ ul { border-radius: 5px; transition: background-color 0.3s ease; } + +/* Specific styles for Roadmap list */ + +.roadmap-list li { + display: flex; + align-items: center; + margin-bottom: 10px; + font-size: 16px; +} + +.roadmap-list li::before { + content: ''; + width: 5px; + height: 5px; + background: #000000; + border-radius: 50%; + margin-right: 10px; +} + +.roadmap-container { + display: flex; + justify-content: center; + align-items: center; +} + +/* This is for project section in about page */ + +#projects{ + padding: 100px 0; +} + +#projects .project-card { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + padding: 1.5rem; + margin: 1rem; + border: 1px solid #ccc; + border-radius: 8px; + background-color: #fff; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + box-sizing: border-box; + height: auto; + text-align: center; +} + +#projects .project-card h4 { + font-size: 1.5rem; + font-weight: bold; + color: #333; +} + +#projects .project-card p { + font-size: 1rem; + color: #666; + margin-bottom: 1.5rem; +} + +#projects .project-card .btn-custom { + padding: 0.5rem 1rem; + font-size: 1rem; + border-radius: 5px; + transition: background-color 0.3s ease; +} + +#projects .btn-custom { + margin-top: 1rem; +} +