style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright 2013 Google Inc.
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. body {
  16. font-family: Arial,sans-serif;
  17. margin: auto;
  18. white-space: nowrap;
  19. padding: 10px;
  20. }
  21. .box {
  22. border: .5em solid #E3E9FF;
  23. -webkit-box-orient: vertical;
  24. -webkit-box-align: center;
  25. -moz-box-orient: vertical;
  26. -moz-box-align: center;
  27. display: block;
  28. box-orient: vertical;
  29. box-align: center;
  30. width: 400px;
  31. height: auto;
  32. margin: auto;
  33. padding: 10px;
  34. }
  35. .request {
  36. -webkit-box-flex: 1;
  37. -moz-box-flex: 1;
  38. box-flex: 1;
  39. }
  40. .result {
  41. -webkit-box-flex: 2;
  42. -moz-box-flex: 2;
  43. box-flex: 2;
  44. }
  45. header {
  46. color:#000;
  47. padding:2px 5px;
  48. font-size:100%;
  49. margin: auto;
  50. text-align: center
  51. }
  52. header h1.logo {
  53. margin:6px 0;
  54. padding:0;
  55. font-size:24px;
  56. line-height:20px;
  57. text-align: center
  58. }
  59. .login {
  60. font-size: 200%;
  61. display: block;
  62. margin: auto;
  63. cursor: pointer;
  64. text-align: center;
  65. font-weight: bold;
  66. color: #2779AA;
  67. line-height: normal;
  68. }
  69. .logout {
  70. font-weight: normal;
  71. margin-top: 0;
  72. }
  73. .shortened {
  74. overflow: scroll;
  75. }
  76. .url {
  77. color: #019;
  78. font-size: 100%;
  79. vertical-align: middle;
  80. padding: 1px;
  81. background-color: white;
  82. border: 1px inset;
  83. cursor: auto;
  84. margin: 0;
  85. text-indent: 0;
  86. display: inline-block;
  87. }
  88. pre.code {
  89. padding: 10px;
  90. border: .5em solid #E3E9FF;
  91. margin: 10px;
  92. height: 400px;
  93. overflow: scroll;
  94. }
  95. .warn {
  96. color: red;
  97. }