Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Styling update px to rem #716

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ and fill in all required details. That's it!


# Installation and environment setup
1.Create new environment <br/>
1. Create new environment <br/>
<code> conda create --name ecosystem python=3.9 </code> <br/>
2. Activate the environment <br/>
<code> conda activate ecosystem </code> <br/>
3. install dependencies <br/>
<code>
pip install -r requirements.txt
</code>
<br>
<code>
pip install -r requirements-dev.txt
</code>

Expand All @@ -27,7 +30,7 @@ pip install -r requirements-dev.txt
1. To run tests against the stable version of qiskit <br/>
<code> python manager.py tests python_stable_tests <url_of_the github_repository> --python_version=py39 --run_name="stable"</code>
2. To run tests against the dev version of qiskit <br/>
<code> python manager.py tests python_dev_tests <url_of_the github_repository> --python_version=py39 --run_name="dev"</code>
<code> python manager.py tests python_dev_tests <url_of_the github_repository> --python_version=py39 --run_name="dev"</code>
3. To run tests within repository <br/>
<code> python manager.py tests python_standard_tests <url_of_the github_repository> --python_version=py39 --run_name="standard"</code>

Expand Down
44 changes: 22 additions & 22 deletions ecosystem/html_templates/style.css.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ body {
}

header {
padding: 48px 0px 32px 0px;
padding: 3rem 0rem 2rem 0rem;
background-color: white;
}

p {
font-size: 14px;
font-size: 0.875rem;
color: #525252;
}
{% endif %}

.inside-header {
padding: 0px 32px 0px 32px;
padding: 0rem 2rem 0rem 2rem;
display: flex;
}

Expand All @@ -36,12 +36,12 @@ p {
}

.header-logo {
margin-right: 80px;
margin-right: 5rem;
}

.ecosystem-title {
font-size: 60px;
line-height: 70px;
font-size: 3.75rem;
line-height: 4.375rem;
font-weight: 300;
}

Expand All @@ -50,28 +50,28 @@ p {
}

.content {
padding: 48px 32px 48px 32px;
margin-bottom: 16px;
padding: 3rem 2rem 3rem 2rem;
margin-bottom: 1rem;
}

.cards {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-top: 24px;
margin-bottom: 48px;
gap: 1rem;
margin-top: 1.5rem;
margin-bottom: 3rem;
}

.card {
flex: 0 1 20%;
background-color: white;
border-radius: 4px;
border-radius: 0.25rem;
}

cds-tile {
display: flex;
flex-flow: column;
gap: 16px;
gap: 1rem;
background-color: white;
padding-left: 0;
padding-right: 0;
Expand All @@ -87,28 +87,28 @@ cds-tag {
}

.project-title {
font-size: 20px;
font-size: 1.25rem;
line-height: 1.25;
font-weight: normal;
}

.section {
font-size: 20px;
font-size: 1.25rem;
position: relative;
left: -20px;
margin-bottom: 8px;
left: -1.25rem;
margin-bottom: 0.5rem;
}

.title-description {
margin: 24px 0;
width: 400px;
margin: 1.5rem 0;
width: 25rem;
color: black;
}

.links {
display: flex;
flex-flow: column wrap;
gap: 8px;
gap: 0.5rem;
}

.description {
Expand All @@ -117,7 +117,7 @@ cds-tag {

.link svg {
vertical-align: middle;
margin-left: 4px;
margin-left: 0.25rem;
}

.text {
Expand Down Expand Up @@ -181,7 +181,7 @@ cds-tag {
flex: 0 1 28%;
}
.header-logo {
margin-right: 48px;
margin-right: 3rem;
}
}

Expand Down
Loading