Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame] | 1 | /** |
| 2 | * Copyright 2015 Google Inc. All Rights Reserved. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | .demo-ribbon { |
| 18 | width: 100%; |
| 19 | height: 40vh; |
| 20 | background-color: #3F51B5; |
| 21 | -webkit-flex-shrink: 0; |
| 22 | -ms-flex-negative: 0; |
| 23 | flex-shrink: 0; |
| 24 | } |
| 25 | |
| 26 | .demo-main { |
| 27 | margin-top: -35vh; |
| 28 | -webkit-flex-shrink: 0; |
| 29 | -ms-flex-negative: 0; |
| 30 | flex-shrink: 0; |
| 31 | } |
| 32 | |
| 33 | .demo-header .mdl-layout__header-row { |
| 34 | padding-left: 40px; |
| 35 | } |
| 36 | |
| 37 | .demo-container { |
| 38 | max-width: 1600px; |
| 39 | width: calc(100% - 16px); |
| 40 | margin: 0 auto; |
| 41 | } |
| 42 | |
| 43 | .demo-content { |
| 44 | border-radius: 2px; |
| 45 | padding: 80px 56px; |
| 46 | margin-bottom: 80px; |
| 47 | } |
| 48 | |
| 49 | .demo-layout.is-small-screen .demo-content { |
| 50 | padding: 40px 28px; |
| 51 | } |
| 52 | |
| 53 | .demo-content h3 { |
| 54 | margin-top: 48px; |
| 55 | } |
| 56 | |
| 57 | .demo-footer { |
| 58 | padding-left: 40px; |
| 59 | } |
| 60 | |
| 61 | .demo-footer .mdl-mini-footer--link-list a { |
| 62 | font-size: 13px; |
| 63 | } |