index.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. body {
  2. background: #fff;
  3. font-family: 'Raleway', sans-serif;
  4. font-size: 42px;
  5. font-weight: 300;
  6. }
  7. form {
  8. text-align: center;
  9. }
  10. #bar {
  11. width: 652px;
  12. margin: 0 auto;
  13. position: relative;
  14. }
  15. #url {
  16. font-family: 'Raleway', sans-serif;
  17. font-size: 32px;
  18. font-weight: 300;
  19. width: 600px;
  20. padding: 25px;
  21. color: #999;
  22. border-radius: 4px;
  23. border: 1px solid #ccc;
  24. outline: none;
  25. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  26. }
  27. #url:focus {
  28. border: 1px solid #09f;
  29. }
  30. #url::-webkit-input-placeholder {
  31. color: #ddd;
  32. }
  33. #url::-moz-placeholder {
  34. color: #ddd;
  35. }
  36. #cmp {
  37. padding: 25px;
  38. width: 560px;
  39. margin: 0 auto;
  40. text-align: left;
  41. font-size: 21px;
  42. transition: transform 200ms ease-in-out;
  43. transform: scaleY(0);
  44. transform-origin: top center;
  45. border-bottom-left-radius: 4px;
  46. border-bottom-right-radius: 4px;
  47. border: 1px solid #ccc;
  48. }
  49. #cmp.link {
  50. background-color: #f6f6f6;
  51. }
  52. #cmp.fuck {
  53. background-color: #fee;
  54. color: #999;
  55. }
  56. #cmp > a, .links a {
  57. color: #09f;
  58. text-decoration: none;
  59. }
  60. #cmp > .hnt, .links .full-url {
  61. color: #ddd;
  62. text-shadow: 1px 1px 0 #fff;
  63. }
  64. #cmp > .hnt {
  65. float: right;
  66. }
  67. #cls {
  68. position: absolute;
  69. top: 0;
  70. right: 0;
  71. bottom: 0;
  72. width: 64px;
  73. background-image: url("/s/close.svg");
  74. background-position: center center;
  75. background-repeat: no-repeat;
  76. background-size: 48px 48px;
  77. cursor: pointer;
  78. opacity: 0.3;
  79. display: none;
  80. }
  81. #cls:hover, .links a:hover {
  82. opacity: 0.6;
  83. }
  84. .links {
  85. width: 800px;
  86. margin: 0 auto;
  87. }
  88. .links h1 {
  89. color: #333;
  90. margin-bottom: 40px;
  91. }
  92. .links ul {
  93. padding: 0;
  94. list-style-type: none;
  95. }
  96. .links ul li {
  97. margin-bottom: 20px;
  98. }