OLD | NEW |
---|---|
1 .documentation-example-code { | 1 .documentation-example-code { |
2 border: 1px dotted black; | 2 border: 1px dotted black; |
3 border-radius: 6px; | 3 border-radius: 6px; |
4 padding: 1em; | 4 padding: 1em; |
5 margin-bottom: 1em; | 5 margin-bottom: 1em; |
6 } | 6 } |
7 | 7 |
8 .documentation-code { | 8 .documentation-code { |
9 border: 1px dotted black; border-radius: 6px; padding: 1em; margin-bottom: 1 em; | 9 border: 1px dotted black; border-radius: 6px; padding: 1em; margin-bottom: 1 em; |
10 } | 10 } |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
91 a.documentation-example-link { | 91 a.documentation-example-link { |
92 float: right; | 92 float: right; |
93 padding: 0.7ex; | 93 padding: 0.7ex; |
94 background-color: rgb(241, 246, 251); | 94 background-color: rgb(241, 246, 251); |
95 text-decoration: none; | 95 text-decoration: none; |
96 margin-left: 1ex; | 96 margin-left: 1ex; |
97 margin-top: -0.5ex; | 97 margin-top: -0.5ex; |
98 border-radius: 5px; | 98 border-radius: 5px; |
99 } | 99 } |
100 | 100 |
101 .documentation-not-found { | |
102 position: absolute; | |
103 top: 0; | |
104 bottom: 25%; | |
105 left: 0; | |
106 right: 0; | |
107 font-size: 24px; | |
108 color: rgb(75%, 75%, 75%); | |
lushnikov
2014/09/03 15:06:39
lets use integers instead of percentage
| |
109 margin-top: auto; | |
110 margin-bottom: auto; | |
111 height: 50px; | |
112 line-height: 26px; | |
113 text-align: center; | |
114 font-weight: bold; | |
115 padding: 10px; | |
116 white-space: pre-wrap; | |
lushnikov
2014/09/03 15:06:39
wait.. do we need all these styles?..
| |
117 } | |
118 | |
OLD | NEW |