OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .documentation-code { | 7 .documentation-code { |
8 border: 1px solid gray; | 8 border: 1px solid gray; |
9 border-radius: 6px; | 9 border-radius: 6px; |
10 padding: 10px; | 10 padding: 10px; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 | 87 |
88 .documentation-box { | 88 .documentation-box { |
89 padding: 6px; | 89 padding: 6px; |
90 padding-left: 10px; | 90 padding-left: 10px; |
91 padding-right: 10px; | 91 padding-right: 10px; |
92 text-decoration: none; | 92 text-decoration: none; |
93 margin-left: 10px; | 93 margin-left: 10px; |
94 margin-top: 5px; | 94 margin-top: 5px; |
95 border-radius: 5px; | 95 border-radius: 5px; |
96 } | 96 } |
97 | |
98 .documentation-not-found { | |
99 display: flex; | |
loislo
2014/09/10 06:18:15
do we actually need this property on the title.
| |
100 justify-content: center; | |
101 align-items: flex-end; | |
loislo
2014/09/10 06:18:15
I'm not sure that we need this property. Could you
semeny
2014/09/10 09:04:59
We need to use flex and other flex properties to a
| |
102 font-size: 24px; | |
103 font-weight: bold; | |
104 color: rgb(191, 191, 191); | |
105 flex-shrink: 0; | |
106 flex-grow: 2; | |
107 } | |
108 | |
109 .documentation-empty-page { | |
110 display: flex; | |
111 flex-direction: column !important; | |
112 } | |
113 | |
114 .documentation-empty-page-align { | |
115 flex-grow: 3; | |
116 } | |
OLD | NEW |