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

Modify font style and size #93

Merged
merged 4 commits into from
Aug 11, 2022
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ venv/
ENV/
env.bak/
venv.bak/
.vscode

# Spyder project settings
.spyderproject
Expand Down
2 changes: 1 addition & 1 deletion doc/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
************
Installation
************
`Sphinx <https://www.sphinx-doc.org/en/master/>`_. is a Python
`Sphinx <https://www.sphinx-doc.org/en/master/>`_ is a Python
documentation generator for creating documentation. If you are new to
using Sphinx, see `Sphinx Getting Started <https://www.sphinx-doc.org/en/master/usage/quickstart.html>`_.

Expand Down
71 changes: 49 additions & 22 deletions src/ansys_sphinx_theme/static/css/ansys_sphinx_theme.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* Provided by the Sphinx base theme template at build time */
@import "../basic.css";
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
@import "../tabs.css";
@import "../sg_gallery.css";

Expand Down Expand Up @@ -42,20 +43,24 @@

--pst-color-active-navigation: 200, 146, 17; /* --ansysBronze */
--pst-color-navbar-link: 255, 255, 255;
--pst-color-navbar-link-hover: 255, 183, 27; /* --ansysBronze */
--pst-color-navbar-link-hover: 200, 146, 17; /* --ansysBronze */
--pst-color-navbar-link-active: 255, 183, 27; /* --ansysBronze */
--pst-font-size-h1: 40px;

--pst-font-size-h1: 48px;
--pst-font-size-h2: 36px;
--pst-font-size-h3: 28px;
--pst-font-size-h4: 20px;
--pst-font-size-h5: 14px;
--pst-font-size-h6: 11px;
}

html[data-theme="light"] {
/*****************************************************************************
* main colors
*/
--pst-color-primary: rgb(255, 183, 27);
--pst-color-primary: #fff;
--pst-color-secondary: rgb(200, 146, 17);
--pst-color-success: rgb(40, 167, 69);
--pst-color-text-base: rgb(51, 51, 51);
--pst-color-text-base: rgb(0, 0, 0);
--pst-color-text-muted: rgb(26, 24, 24);
--pst-color-border: #c9c9c9;
--pst-color-shadow: rgb(216, 216, 216);
Expand All @@ -81,7 +86,7 @@ html[data-theme="light"] {
* layout
*/

--pst-color-link:#0077B3;
--pst-color-link:#1E6DDC;
--pst-color-link-hover:#32cfea;
--pst-color-inline-code: #CD186D;
--pst-color-target: rgb(255, 255, 255);
Expand Down Expand Up @@ -134,7 +139,7 @@ h1, h2 {
}

.bd-header.navbar-light#navbar-main .navbar-nav li a.nav-link {
color:#ffffff;
color: #a2a2a2;
}

.docutils {
Expand Down Expand Up @@ -201,8 +206,8 @@ p.rubric {
Sphinx-tab
###############
*/
.sphinx-tabs-panel, p{
font-weight: 100;
.sphinx-tabs-panel p{
font-weight: 400;
font-family: 'Source Sans Pro', sans-serif;
font-size: 1rem;
font-style: var(--pst-font-family-base-system);
Expand Down Expand Up @@ -303,16 +308,6 @@ table.table-centered {
}


/*
###############
longtable
###############
*/

table.longtable tr:hover td {
background-color: rgb(255, 183, 27, 0.6);
}

/*
#########################
longtable-centered
Expand Down Expand Up @@ -496,18 +491,22 @@ Side column size (first and second column from left)
}

a.headerlink {
color: var(--pst-color-text-base);
color: #222;
}

/*
#################################
Right side toctree color and font
#################################
*/
.toc-entry a {
padding: .125rem 1.5rem;
color: var(--pst-color-link);
}

.toc-entry>.nav-link.active {
font-weight: 500;
color: var(--pst-color-link);
font-weight: bold;
color: var(--pst-color-text-base);
background-color: transparent;
border-left: 2px solid var(--pst-color-text-muted);
}
Expand Down Expand Up @@ -562,4 +561,32 @@ Bold font weight for **code**

b, strong {
font-weight: 900;
}

#theme-switch {
border-color: #fff;
border: 2px solid #898A8D;
margin-right: .4rem;
}

#theme-switch:hover {
background-color: #fff
}

.bd-header.navbar-light#navbar-main .navbar-nav li a.nav-link:hover {
color: #fff;
}

.bd-header.navbar-light#navbar-main .navbar-nav>.active>.nav-link {
border-bottom: 2px solid #fff;
}

/*
#############################
Padding of main content block
#############################
*/

.bd-content {
padding: 1.5rem 1.5rem 2rem 3rem;
}
1 change: 0 additions & 1 deletion src/ansys_sphinx_theme/static/css/breadcrumbs.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
padding-top: 1rem;
padding-bottom: 1rem;
padding-left: 3rem;
border-bottom: 1px solid rgba(0,0,0,.1);

}

Expand Down