diff --git a/src/_data/services.yml b/src/_data/services.yml new file mode 100644 index 00000000..b8ff9761 --- /dev/null +++ b/src/_data/services.yml @@ -0,0 +1,19 @@ +- name: Software development + id: software-development + description: Agile web application development and support with data publishing needs and tools for data analysts. + +- name: Human-centered design + id: human-centered-design + description: User-centered design that incorporates accessibility requirements and multiple language support. + +- name: Data Standards development + id: data-standards-development + description: Collaborate with agencies and stakeholders to create equity and transparency through developing standards. + +- name: Project management + id: project-management + description: Ensure timely and efficient delivery of project goals and objectives. + +- name: Program development + id: program-development + description: Build teams and services from the ground up within the government. diff --git a/src/assets/illustrations/sign.svg b/src/assets/illustrations/sign.svg new file mode 100644 index 00000000..999cb9db --- /dev/null +++ b/src/assets/illustrations/sign.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/our-work.html b/src/our-work.html index c95337a7..b1c81862 100644 --- a/src/our-work.html +++ b/src/our-work.html @@ -16,7 +16,47 @@

- +
+
+ What we do +

Our services

+ +
+
+ {% for service in site.data.services %} +
+

+ +

+
+
{{ service.description }}
+
+
+ {% endfor %} +
+
+
+
+ +
+ + + +


diff --git a/src/styles/base.css b/src/styles/base.css index 7c585139..1f060417 100644 --- a/src/styles/base.css +++ b/src/styles/base.css @@ -7,6 +7,7 @@ --brand-primary-green: #88B440; --brand-primary-black: #1C1C1C; --brand-primary-cyan: #51B1C7; + --brand-scale-gray-2: #BBBBBB; --brand-scale-gray-3: #878787; --brand-scale-gray-4: #545454; --brand-scale-green-1: #E7F0D9; @@ -219,6 +220,26 @@ blockquote p { /*#endregion */ +/* Accordions */ + +.accordion { + --bs-accordion-active-bg: var(--brand-scale-green-1); + --bs-accordion-border-color: var(--brand-scale-gray-2); + --bs-accordion-active-color: var(--text-black); + + /* override the fill color */ + --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231c1c1c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") +} + +.accordion-button { + --bs-accordion-btn-focus-border-color: var(--brand-primary-green); + --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(136, 180, 64, 1); +} + +.accordion-item, .accordion-button { + border-radius: 0 !important; +} + /* Buttons */ :root { @@ -666,3 +687,11 @@ header { padding: 0.75rem; display: table-cell; } + +/* Our Work */ + +.sign { + position: absolute; + right: 0; + bottom: 0; +}