-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
* style: fix a quote mistake * feat: tup-624: added generics/attributes to demo (#244) * added generics/attributes to demo * added disabled attr pointer-events to generics/attributes --------- Co-authored-by: Wesley B <[email protected]> * feat: tup-619 c-content-block migration (#245) * feat: tup-610 content-block migration * quick fix, moved import from base to cms * moved import from base to cms * delete dist file for content-block --------- Co-authored-by: Wesley B <[email protected]> --------- Co-authored-by: Tomas Gonzalez <[email protected]>
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/*! @tacc/core-styles 2.18.0+ | MIT | github.com/TACC/Core-Styles */ |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
:is(.c-content-block, .content-block) { | ||
margin-bottom: var(--global-space--bootstrap-gap); | ||
padding: var(--global-space--pattern-pad); | ||
} | ||
|
||
:is(.c-content-block, .content-block) :is(h1, h2, h3, h4, h5, h6) { | ||
border-left: var(--global-border-width--xx-thick) solid var(--global-color-accent--tertiary); | ||
padding-left: 10px; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<dl> | ||
<dt>Staff Profile</dt> | ||
<dd> | ||
<div class="content-block"> | ||
<img class="img-fluid" /> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/9/99/Exampleavatar.png" | ||
title="University of Texas at Austin" class="img-fluid" /> | ||
</div> | ||
|
||
<div class="content-block"> | ||
<h3>Education</h3> | ||
|
||
<p><strong>Ph.D., Computer Engineering</strong><br> | ||
Clemson University, 2000</p> | ||
|
||
<p><strong>M.S., Computer Engineering</strong><br> | ||
Clemson University, 1993</p> | ||
|
||
<p><strong>B.S., Electrical Engineering</strong><br> | ||
Clemson University, B.S. (Electrical Engineering), 1991</p> | ||
</div> | ||
</dd> | ||
|
||
<dt>Newsletters</dt> | ||
<dd> | ||
<article class="content-block"> | ||
<h3>EPIC + WeTeach_CS Newsletter</h3> | ||
|
||
<p>Stay connected with our biweekly <a href="#">newsletter</a>.</p> | ||
<a class="c-button c-button--primary" href="#">Newsletter Signup</a> | ||
</article> | ||
</dd> | ||
</dl> |