12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* Styles used specifically for the demo page */
- body {
- background: #f5f5f5;
- font-family: monospace;
- font-size: 14px;
- color: #333333;
- }
- button {
- outline: 0;
- }
- .examples {
- max-width: 670px;
- margin: 2em auto;
- padding: 4em;
- background: #fff;
- text-align: center
- }
- .examples .intro {
- margin-bottom: 3em;
- line-height: 1.4em;
- font-size: 16px;
- text-align: left;
- }
- .examples .intro h1 {
- margin-top: 0;
- font-size: 18px;
- }
- .examples .outro {
- display: block;
- text-align: right;
- margin-top: 3em;
- }
- .examples section {
- display: inline-block;
- width: 24%;
- min-width: 160px;
- margin-bottom: 2em;
- text-align: center;
- vertical-align: top;
- }
- .examples section h3 {
- color: #bbb;
- font-weight: normal;
- }
- .sharing {
- float: left;
- }
|