aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/css (follow)
Commit message (Collapse)AuthorAgeLines
...
* | Dark: More subtle collapsible and box-shadow bordersGravatar hedy2024-01-18-1/+1
| |
* | Dark: Use original light theme colors everywhereGravatar hedy2024-01-18-5/+9
| | | | | | | | | | Adjusted box-shadow for dark mode to be more readable, unfortunately this gave it a little neomorphism effect...
* | Dark: For content pages using transparent images...Gravatar hedy2024-01-17-4/+10
| | | | | | | | | | | | | | | | | | | | ...which are unreadable in dark mode, use `has-dark-mode-background` class. ![](/img.png){: class="has-dark-mode-background" } Like this. And it will be given a nice light gray background and a subtle padding & border.
* | Consistent CSS indent for files that I touchedGravatar hedy2024-01-17-7/+7
| |
* | Fix conflictsGravatar hedy2024-01-17-0/+1
|\ \
| * | Fix typo in page.cssGravatar ~hedy2024-01-17-0/+1
| | |
* | | Dark: Sponsors light background for code/gamejamsGravatar hedy2024-01-17-5/+23
| | |
* | | Consistent 4-spaces CSS indentGravatar hedy2024-01-17-30/+30
|/ /
* | Dark: Fix the filter box on resources pageGravatar hedy2024-01-16-8/+12
| |
* | Merge branch 'main' into gdwr-dark-themeGravatar ~hedy2024-01-13-0/+13
|\|
| * Fixed truncated dropdown menu (#1138)Gravatar sarzz2024-01-06-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * removing padding-right from discord button in nav * fixing dropdown menu on contributing page for sub-articles * Revert "fixing dropdown menu on contributing page for sub-articles" This reverts commit 2d158ddbb8f1d27dd7d8b0b9282554365cf042e3. * fixing dropdown menu on contributing page for sub-articles * Revert "removing padding-right from discord button in nav" This reverts commit e6642932611de307f5386928be0a1dd7e94cd134. * lint fix * fixing dropdown menu for mobile screen * Update pydis_site/static/css/content/page.css Co-authored-by: wookie184 <[email protected]> --------- Co-authored-by: wookie184 <[email protected]>
* | Dark: Fix colors on content pagesGravatar hedy2024-01-13-0/+8
| |
* | Dark: Use link color of better contrastGravatar hedy2024-01-13-4/+20
| |
* | Dark: Fix timeline color for bordersGravatar hedy2024-01-12-2/+9
| |
* | Dark: Fix sizing of sponsors' logosGravatar hedy2024-01-12-6/+18
| | | | | | | | | | | | Also works on mobile. I *love* CSS.
* | Dark: Fix backgrounds on sponsors section on homepageGravatar hedy2024-01-06-11/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://discord.com/channels/267624335836053506/635950537262759947/1193170173574774855 Idea from go.dev -- add background to each sponsor logo and put them in a grid. Also set the sponsor section background color to match that of footer's. Issue pointed out by @ChrisLovering on discord. This is an initial draft. As of now this works from my own testing: - Consistent & uniform spacing (gaps) - Supports mobile - No affect to light theme other than the arrangement - Logos do not get squashed, ever
* | Dark: Fix colors for bulma cards shadow & bordersGravatar hedy2024-01-06-0/+12
| |
* | Dark: Fix all link hover colors (hopefully) everywhereGravatar hedy2024-01-05-2/+2
| |
* | Dark: Name JS & CSS files according to their contentGravatar hedy2024-01-05-0/+2
| | | | | | | | | | | | | | | | We have the CSS for the navbar in base.css, the relevant files only contain code for the theme toggle, so they should be named as such. If we ever implement CSS variables per-theme, they could then be done in `themes.css`.
* | Dark: Fix shadows & borders colors on the homepageGravatar hedy2024-01-05-4/+18
| |
* | Dark: Inline selectors for the hero bottom waveGravatar hedy2024-01-05-4/+3
| |
* | Dark: Fix hero colors on homepageGravatar hedy2024-01-05-0/+10
| | | | | | | | | | | | | | | | | | | | We can now use `[data-theme="dark"]` selector in CSS to defined styles specifically for dark mode. This follows common web dev patterns and gives little overhead. - Hero - Added `wave_black` SVG which copies `wave_white` as is but uses the site's dark mode background color.
* | Dark: Fix most colors on timelineGravatar hedy2023-12-14-7/+0
| | | | | | | | A LOT of colors are still hardcoded in the CSS
* | Automatically fix lintGravatar hedy2023-12-14-1/+1
| |
* | Fix all conflictsGravatar hedy2023-12-14-7/+97
|\| | | | | | | hopefully I dont have to do this again
| * Fix broken netcup icon in "Powered by" footerGravatar Johannes Christ2023-12-08-1/+1
| | | | | | | | | | | | The original URL this was hosted at is no longer available. Incorporate the netcup icon as found on https://www.netcup.de/ueber-netcup/werbemittel/index.php.
| * removing margin-left property from base.css to fix the overflow caused by ↵Gravatar Sarthak singh2023-10-05-1/+0
| | | | | | | | discord button on top right
| * Fixed inconsistent column heights in the contributing ↵Gravatar Steve2023-07-17-0/+9
| | | | | | | | section(python-discord#1036)
| * Hide edit-on-github link on small screensGravatar Johannes Christ2023-05-06-0/+6
| |
| * Put 'Edit on GitHub' on breadcrum row with Sub-Articles dropdownGravatar hedy2023-05-06-0/+4
| |
| * Add Tag MetadataGravatar Hassan Abouelela2022-08-16-1/+5
| | | | | | | | | | | | | | Uses the commit API to obtain tag metadata such as when it was last edited, and by whom. Signed-off-by: Hassan Abouelela <[email protected]>
| * Change Hyperlink Color On HoverGravatar Hassan Abouelela2022-08-14-0/+4
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Add Tag Group SupportGravatar Hassan Abouelela2022-08-14-8/+7
| | | | | | | | | | | | | | Adds support for tag groups in content. This involves some modification to the routing, and templating. Signed-off-by: Hassan Abouelela <[email protected]>
| * Set Link Color For Sub-elementsGravatar Hassan Abouelela2022-08-13-0/+6
| | | | | | | | Signed-off-by: Hassan Abouelela <[email protected]>
| * Add Tag Page TemplateGravatar Hassan Abouelela2022-08-13-0/+7
| | | | | | | | | | | | Add a template for the tag page itself, and add a route to use it. Signed-off-by: Hassan Abouelela <[email protected]>
| * Improve icon size and alignment.Gravatar kosayoda2022-06-26-2/+1
| |
| * Add hover transition to match welcome video.Gravatar kosayoda2022-06-19-0/+1
| |
| * Show shadow on hover for CJ frontpage banner.Gravatar kosayoda2022-06-18-1/+5
| |
| * Remove weird top padding for first panel item.Gravatar kosayoda2022-06-18-0/+8
| |
| * Force line break at arbritrary points for really long wordsGravatar minalike2022-04-26-0/+3
| |
| * Fix bug with search tag taking up too much width.Gravatar Leon Sandøy2022-02-13-2/+3
| |
| * Edge case: Fix a bug with overflow on Chrome.Gravatar Leon Sandøy2022-02-13-1/+0
| |
| * Edge case: Fix extremely long search overflow.Gravatar Leon Sandøy2022-02-13-0/+18
| |
| * Fix search tag width bug on firefox.Gravatar Leon Sandøy2022-02-13-0/+1
| | | | | | | | | | | | | | Without a min-width, the tag would not extend to fit the full size of the contents on Firefox. It seemed to work just fine on Chrome, though. The fix is simple - just enforce a min-width equal to fit-content.
| * Make the search tag look more like normal filters.Gravatar Leon Sandøy2022-02-13-1/+6
| |
| * Add a filter tag when searching.Gravatar Leon Sandøy2022-02-13-0/+8
| |
| * Add a search bar to the top of the filter sidebar.Gravatar Leon Sandøy2022-02-12-0/+5
| |
* | Resize theme switchGravatar GDWR2022-02-09-1/+1
| |
* | Resize theme switchGravatar GDWR2022-02-09-26/+8
| |
* | Remove clashing cssGravatar GDWR2022-02-09-5/+0
| |