説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Base.uss 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .collapse {
  2. display: none;
  3. }
  4. .hide {
  5. visibility: hidden;
  6. }
  7. .row {
  8. flex-direction: row;
  9. }
  10. .row-reverse {
  11. flex-direction: row-reverse;
  12. }
  13. .column {
  14. flex-direction: column;
  15. }
  16. .flex-container {
  17. display: flex;
  18. }
  19. .grow {
  20. flex-grow: 1;
  21. }
  22. .grow-max {
  23. flex-grow: 10;
  24. }
  25. .parent-vertical-center{
  26. width: 100%;
  27. height: 100%;
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. justify-content: center;
  32. }
  33. .elements-vertical-center{
  34. display: flex;
  35. flex-direction: column;
  36. align-items: center;
  37. justify-content: center;
  38. }
  39. .horizontally-centered {
  40. justify-content: center;
  41. }
  42. .align-end {
  43. justify-content: flex-end;
  44. }
  45. .align-center{
  46. justify-content: center;
  47. }
  48. .align-vertical-center{
  49. flex-direction: row;
  50. align-items: center;
  51. }
  52. .align-start {
  53. justify-content: flex-start;
  54. }
  55. .main {
  56. margin-top: 10px;
  57. padding-left: 25px;
  58. padding-right: 20px;
  59. }
  60. .title {
  61. margin: 10px 0px;
  62. font-size: 18px;
  63. }
  64. .error {
  65. color: #FF0000;
  66. }
  67. .anchor {
  68. color: #2196F3;
  69. padding: 0px;
  70. margin: 0px;
  71. background-color: transparent;
  72. border-width: 0px;
  73. }
  74. .classic-button {
  75. padding: 7px;
  76. margin-top: 10px;
  77. height: 30px;
  78. }
  79. .alert-label {
  80. color: red;
  81. }
  82. .footer {
  83. position: absolute;
  84. margin: 20px 10px 0px 10px;
  85. bottom: 5px;
  86. }
  87. .container {
  88. padding: 10px;
  89. border-bottom-width: 1px;
  90. border-bottom-color: #999999;
  91. }
  92. .container.last {
  93. border-bottom-width: 0px;
  94. }
  95. .sub-section {
  96. margin-left: 10px;
  97. }
  98. Button {
  99. cursor: link;
  100. }
  101. Label {
  102. white-space: normal;
  103. }
  104. TextField {
  105. margin-left: 0px;
  106. margin-top: 3px;
  107. margin-right: 10px;
  108. margin-bottom: 3px;
  109. }
  110. Toggle {
  111. margin-left: 0px;
  112. }