@include motion-ui-transitions;
@import 'foundation-docs';
-@import 'orbit';
-
-.docs-newsletter { margin-top: 0 !important; }
-#subForm { margin-top: 1rem; }
-
-#studiosCallout {
- border-top: 1px solid #f6f4f4;
- padding: 45px 45px 20px 45px !important;
- background-color: #fafafa !important;
-
- .property-label {
- font-family: "Proxima Nova Condensed Bold","Proxima Nova Condensed","proxima-nova-condensed","Helvetica Neue",Helvetica,Arial,sans-serif;
- text-transform: uppercase;
- font-weight: bold;
- }
-
- h3 {
- font-size: 26px;
- margin-top: 20px;
- color: #333;
- }
-
- .lead {
- font-size: 18px;
- color: #333;
- }
-
- img {
- width: 100%;
- height: 250px;
- overflow: hidden;
- }
-
-
- /* -= Button + Label Colors Based on Property =- */
-
- &.university {
- .button { background: #ff6908;
- &:hover {
- background-color: #de5700;
- transition: .25 ease all;
- }
- }
- .property-label { color: #ff6908; }
- }
- &.foundation {
- .button { background: #2CADBE;
- &:hover {
- background-color: #228795;
- transition: .25 ease all;
- }
- }
- .property-label { color: #2CADBE; }
- }
- &.studios {
- .button { background: #2CADBE;
- &:hover {
- background-color: #228795;
- transition: .25 ease all;
- }
- }
- .property-label { color: #2CADBE; }
- }
- }
-
- #studiosCallout {
- @media (max-width: 650px) {
- text-align: left;
-
- .button {
- width: auto;
- }
-
- h1 {
- margin-top: 0;
- }
- }
- }
-
- /* Banner for announcements */
-a.notice {
- display:block;
- overflow: hidden;
- position: relative;
- padding: 1rem 0;
- width:100%;
- background: url(../img/inky-banner-bg-boat.svg) no-repeat center center;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
-
- @include breakpoint(medium down) {
- background: url(../img/inky-banner-bg-clear.svg) no-repeat center center;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
-
- }
-
- .info {
- left: 0;
- right: 0;
- z-index: 20;
- margin-left: auto;
- margin-right: auto;
-
- h5 {
- color: #ffffff;
- text-align: center;
- margin-bottom: 0 !important;
- }
- }
-}
+@import 'examples/grid';
+@import 'examples/motion-uo';
+@import 'examples/off-canvas';
+@import 'examples/orbit';
+@import 'examples/reveal';
+@import 'examples/top-bar';
--- /dev/null
+// Grid
+.row.display {
+ background: #eee;
+ font-size: 11px;
+ margin-bottom: 10px;
+ line-height: 2rem;
+ border: solid 1px #c6c6c6;
+ margin-left: 0 !important;
+ margin-right: 0 !important;
+
+ .columns {
+ &:nth-child(2),
+ &.small-centered,
+ &.large-centered {
+ background: darken(#eee, 5%);
+ }
+
+ &.color-end {
+ background: darken(#eee, 10%)
+ }
+ }
+}
+
+.row.display-end {
+ background: #fff;
+ font-size: 11px;
+ margin-bottom: 10px;
+ line-height: 2rem;
+ border: solid 1px #c6c6c6;
+ margin-left: 0 !important;
+ margin-right: 0 !important;
+
+ .columns {
+ background: darken(#eee, 5%);
+ border-left: 1px solid #c6c6c6;
+
+ &.color-end {
+ background: darken(#eee, 10%)
+ }
+ }
+}
+
+// Flex Grid
+[id^="docs-flex"].docs-component .docs-code-live {
+ @include foundation-flex-grid;
+
+ .row {
+ background: #f9f9f9;
+ font-size: 11px;
+ margin-bottom: 10px;
+ line-height: 2rem;
+ border: solid 1px #c6c6c6;
+ margin-left: 0;
+ margin-right: 0;
+ margin-bottom: 1.5rem;
+
+ // Disable clearfix
+ &::before,
+ &::after {
+ display: none;
+ }
+ }
+
+ .column,
+ .columns {
+ float: none;
+ width: auto;
+ margin-right: -1px; // Not sure why this has to be here
+
+ &:nth-child(odd) {
+ background: #eee;
+ }
+ &:nth-child(even) {
+ background: #ddd;
+ }
+ }
+}
--- /dev/null
+.docs-transitions {
+ max-width: 400px;
+}
+
+.docs-transition-demo {
+ @include thumbnail;
+ display: block;
+ max-width: 400px;
+ margin: 0 auto;
+ backface-visibility: hidden;
+}
+
+@include mui-series {
+ #series-example-1 {
+ @include mui-queue(0.5s, 0s, fade, slide(in, up));
+ }
+
+ #series-example-2 {
+ @include mui-queue(0.5s, 0.5s, fade, spin);
+ }
+
+ #series-example-3 {
+ @include mui-queue(0.5s, 0s, fade, hinge(in, bottom));
+ }
+}