Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
119faac
First Draft of Homepage Template
djanelle-mit Jun 12, 2026
3a176bf
Adding homepage static content
djanelle-mit Jun 17, 2026
4315f26
New style structure mocked out
djanelle-mit Jun 22, 2026
bac2bd8
Moved v2 styles out of old layout partial into new v2
djanelle-mit Jun 22, 2026
c74e78a
Split homepage, header, footer styles into appropriate css files
djanelle-mit Jun 22, 2026
2b0d17d
Made v2 styles conditional to v2 template to simplify style rules
djanelle-mit Jun 22, 2026
78582ff
Conditional style sheets for v2 and adding FontAwesome latest version…
djanelle-mit Jun 22, 2026
e1e1345
Rough mock of static content, missing featured section
djanelle-mit Jun 22, 2026
6889ab2
Updated styles for static content
djanelle-mit Jun 23, 2026
0f5ab88
Fix style bugs introduced by new type scale variables in footer
djanelle-mit Jun 23, 2026
28d9e19
Fixing bugs introduced with new base font size scale in header
djanelle-mit Jun 23, 2026
815bc78
Button styling and responsive fixes
djanelle-mit Jun 23, 2026
a64d7a7
Responsive hours
djanelle-mit Jun 24, 2026
bb6ab03
Fleshing out featured and events sections
djanelle-mit Jun 25, 2026
7b2fb56
Rough responsive behavior for featured section
djanelle-mit Jun 25, 2026
43af41a
Small style updates to featured and events
djanelle-mit Jun 25, 2026
254287f
Tuning featured exhibit spacing
djanelle-mit Jun 25, 2026
bb9a62b
Small responsive bugfix for featured 6 count layout
djanelle-mit Jun 29, 2026
4b82ab6
Added the hero image citation link
djanelle-mit Jun 29, 2026
665e55b
Updating responsive behavior of hours
djanelle-mit Jun 29, 2026
6efd778
Updated responsive styling for search box
djanelle-mit Jun 29, 2026
c5277a5
Add all help options
djanelle-mit Jun 29, 2026
72664bb
Adding other variants of featured item type tags
djanelle-mit Jun 29, 2026
4b35643
Bugfix to link hover state
djanelle-mit Jun 29, 2026
9354c2b
Icon semantic color variables and fixing search input icon
djanelle-mit Jun 29, 2026
b95076f
Adding search action to point to USE search
djanelle-mit Jun 29, 2026
303ddb0
Image styling for featured collection
djanelle-mit Jun 29, 2026
561451b
Adding links and contrast fix for NEWS tag
djanelle-mit Jul 6, 2026
fea2ecf
Links and content updates to using the libraries
djanelle-mit Jul 6, 2026
50274aa
Filling in content
djanelle-mit Jul 8, 2026
a133ace
More link updates
djanelle-mit Jul 8, 2026
cececfd
Updates to featured content
djanelle-mit Jul 8, 2026
be9a77d
Content updates
djanelle-mit Jul 8, 2026
753ffd7
Removing duplicate links
djanelle-mit Jul 8, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -306,4 +306,4 @@ html.no-js .js-hidden {
display: table;
clear: both;
}
}
}
28 changes: 28 additions & 0 deletions web/app/themes/mitlib-parent/css/v2/components/buttons.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
a.button {
border: 1px solid var(--color-button-base-border-primary);
background-color: var(--color-button-base-bg-primary);
color: var(--color-button-base-text-primary);
border-radius: var(--border-radius-none);
display: inline-block;
padding: var(--sp-150) var(--sp-300);
text-decoration: none;
font-size: var(--font-size-md);
font-weight: var(--font-weight-medium);

&:hover {
background-color: var(--color-button-hover-bg-primary);
border-color: var(--color-button-hover-border-primary);
color: var(--color-button-hover-text-primary);
}

&.secondary {
border: 1px solid var(--color-button-base-border-secondary);
background-color: var(--color-button-base-bg-secondary);
color: var(--color-button-base-text-secondary);

&:hover {
background-color: var(--color-button-hover-bg-secondary);
color: var(--color-button-hover-text-secondary);
}
}
}
Loading