| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @import "compat";
-
- .Info {
- max-width: 440px;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #fff;
- padding: 20px 50px;
- @include box-sizing(border-box);
- text-align: center;
-
- blockquote {
- border-left: 3px solid grey;
- padding-left: 10px;
- text-align: justify;
- margin: 20px 0;
-
- &:before {
- content: '“';
- float: left;
- font-size: 2em;
- margin-right: 20px;
- }
-
- &:after {
- content: '”';
- float: right;
- font-size: 2em;
- margin-top: -25px;
- }
-
- }
-
- * {
- margin-bottom: 10px;
- }
-
- .apple-link {
- display: inline-block;
- overflow: hidden;
- margin-top: 20px;
- background: url(//linkmaker.itunes.apple.com/assets/shared/badges/fr-fr/appstore-lrg.svg) no-repeat;
- width: 135px;
- height: 40px;
- background-size: contain;
- cursor: pointer;
- }
-
- }
|