| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- body {
- background: #fff;
- font-family: 'Raleway', sans-serif;
- font-size: 42px;
- font-weight: 300;
- }
- form {
- text-align: center;
- }
- #url {
- font-family: 'Raleway', sans-serif;
- font-size: 32px;
- font-weight: 300;
- width: 600px;
- margin: 0 auto;
- padding: 25px;
- color: #999;
- border-radius: 4px;
- border: 1px solid #ccc;
- outline: none;
- box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
- }
- #url:focus {
- border: 1px solid #09f;
- }
- #url::-webkit-input-placeholder {
- color: #ddd;
- }
- #url::-moz-placeholder {
- color: #ddd;
- }
- #cmp {
- background-color: #eee;
- padding: 25px;
- width: 560px;
- margin: 0 auto;
- text-align: left;
- font-size: 21px;
- transition: transform 200ms ease-in-out;
- transform: scaleY(0);
- transform-origin: top center;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- border: 1px solid #ccc;
- }
- #cmp > a {
- color: #09f;
- text-decoration: none;
- }
|