|
|
@@ -681,12 +681,25 @@ p.cc {
|
|
|
padding: 0;
|
|
|
}
|
|
|
#dw-footer ul.footer-links li {
|
|
|
- margin: 0 0 .35rem;
|
|
|
- padding: 0 0 .35rem;
|
|
|
+ margin: 0 0 .1rem;
|
|
|
+ padding: 0;
|
|
|
+ line-height: 1.35;
|
|
|
}
|
|
|
#dw-footer ul.footer-links li:last-child {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
+/* pull the three link columns closer: size each to its content and space them with
|
|
|
+ a fixed gap instead of the fixed-width col-4 thirds that spread them apart. */
|
|
|
+#dw-footer .br-widget .row {
|
|
|
+ --bs-gutter-x: 0;
|
|
|
+ gap: 2.5rem;
|
|
|
+ justify-content: flex-end; /* float the columns to the right, above the social icons */
|
|
|
+}
|
|
|
+#dw-footer .br-widget .row > [class*="col-"] {
|
|
|
+ flex: 0 0 auto;
|
|
|
+ width: auto;
|
|
|
+ max-width: none;
|
|
|
+}
|
|
|
/* sliding underline on hover (left-to-right) */
|
|
|
#dw-footer .br-widget a:before,
|
|
|
#dw-footer .footer-end a:before {
|
|
|
@@ -721,7 +734,7 @@ p.cc {
|
|
|
#dw-footer ul.footer-social {
|
|
|
list-style: none;
|
|
|
display: flex;
|
|
|
- gap: 16px;
|
|
|
+ gap: 5px;
|
|
|
justify-content: flex-end;
|
|
|
margin: .5rem 0 0;
|
|
|
padding: 0;
|
|
|
@@ -731,8 +744,8 @@ p.cc {
|
|
|
padding: 0;
|
|
|
}
|
|
|
#dw-footer ul.footer-social .dw-icon-2x {
|
|
|
- width: 22px;
|
|
|
- height: 22px;
|
|
|
+ width: 19px;
|
|
|
+ height: 19px;
|
|
|
}
|
|
|
@media (max-width: 767.98px) {
|
|
|
#dw-footer .footer-end .gaegu,
|
|
|
@@ -775,7 +788,7 @@ p.cc {
|
|
|
|
|
|
[contenteditable] {outline: none;}
|
|
|
#caro {
|
|
|
- min-height: 400px;
|
|
|
+ min-height: 200px; /* halved with #studio-caro's 40vh to cut the hero height in half */
|
|
|
}
|
|
|
|
|
|
.hide-svg {
|
|
|
@@ -897,6 +910,49 @@ article.home {
|
|
|
margin: 28px 0px;
|
|
|
padding: 10px;
|
|
|
}
|
|
|
+/* tighter line spacing between the studio tabs */
|
|
|
+.studio-subnav .list-group-item {
|
|
|
+ margin-top: 0;
|
|
|
+ padding-top: .1rem;
|
|
|
+ padding-bottom: .1rem;
|
|
|
+ line-height: 1.35;
|
|
|
+}
|
|
|
+/* Card behind the below-slider section (tabs + tab content) — the other pages'
|
|
|
+ dadada card, with a square top so it stays snug under the slider. */
|
|
|
+.studio-lower {
|
|
|
+ background: #dadada;
|
|
|
+ border-radius: 0 0 6px 6px;
|
|
|
+ padding-bottom: 2rem;
|
|
|
+ padding-left: 2.5rem; /* inset the subnav so more of the dadada card shows on the left */
|
|
|
+}
|
|
|
+/* Subnav column background: rounded on the bottom only so its square top stays
|
|
|
+ snug against the hero slider above; padding-bottom gives the Projects button room. */
|
|
|
+.studio-subnav-col {
|
|
|
+ border-radius: 0 0 6px 6px;
|
|
|
+ padding-bottom: 1.5rem;
|
|
|
+}
|
|
|
+/* Projects page button under the tabs — light, to contrast with the dark subnav column */
|
|
|
+.studio-projects-btn {
|
|
|
+ display: block;
|
|
|
+ margin: 1.25rem 10px 0;
|
|
|
+ text-align: center;
|
|
|
+ background: #dadada;
|
|
|
+ color: #232323;
|
|
|
+ border: 1px solid #dadada;
|
|
|
+}
|
|
|
+.studio-projects-btn:hover {
|
|
|
+ background: #fff;
|
|
|
+ color: #232323;
|
|
|
+}
|
|
|
+/* Studio tab copy — now full-width (the Tools third column was removed); give it
|
|
|
+ breathing room all around and a larger type size. */
|
|
|
+#studio-tab .tab-pane .entry-content {
|
|
|
+ padding: 2.5rem;
|
|
|
+}
|
|
|
+#studio-tab .tab-pane .entry-content h4 {
|
|
|
+ font-size: 1.3rem !important; /* beat the .fs-5 !important utility on the copy */
|
|
|
+ line-height: 1.6;
|
|
|
+}
|
|
|
.studio-subnav a {
|
|
|
color: #000;
|
|
|
text-decoration: none;
|
|
|
@@ -917,7 +973,7 @@ article.home {
|
|
|
|
|
|
article.studio {
|
|
|
background: #fff;
|
|
|
- padding: 0 15px 10px;
|
|
|
+ padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
|
|
|
margin:0 0 20px;
|
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
}
|
|
|
@@ -936,6 +992,20 @@ img.studio-thumb:hover {
|
|
|
-webkit-filter: saturate(1) opacity(1);
|
|
|
filter: saturate(1) opacity(1);
|
|
|
}
|
|
|
+/* Projects page — same dark-blue body (body.page) + light content card + 1280
|
|
|
+ width as the desk / block pages. body.projects comes from page_bodyclass(). */
|
|
|
+body.projects .container.leader {
|
|
|
+ width: auto;
|
|
|
+ max-width: 1280px;
|
|
|
+}
|
|
|
+body.projects h1 {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.projects-card {
|
|
|
+ background: #dadada;
|
|
|
+ padding: 96px;
|
|
|
+ border-radius: 6px;
|
|
|
+}
|
|
|
|
|
|
/*============================================
|
|
|
Art
|
|
|
@@ -1549,7 +1619,7 @@ body.page .edit-link {
|
|
|
|
|
|
article.studio {
|
|
|
background: #fff;
|
|
|
- padding: 0 15px 10px;
|
|
|
+ padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
|
|
|
margin:0 0 20px;
|
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
}
|