| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- body {
- background: #fff;
- font-family: 'Raleway', sans-serif;
- font-size: 42px;
- font-weight: 300;
- }
- form {
- text-align: center;
- }
- #bar {
- width: 652px;
- margin: 0 auto;
- position: relative;
- }
- #url {
- font-family: 'Raleway', sans-serif;
- font-size: 32px;
- font-weight: 300;
- width: 600px;
- 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;
- }
- #cls {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- width: 64px;
- background-image: url("/s/close.svg");
- background-position: center center;
- background-repeat: no-repeat;
- background-size: 48px 48px;
- cursor: pointer;
- opacity: 0.3;
- }
- #cls:hover {
- opacity: 0.6;
- }
|