ValidateEndpoint.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. Copyright (C) 2017 Cloudbase Solutions SRL
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. @import '../variables.scss';
  15. .root {
  16. padding: 16px;
  17. .message {
  18. font-weight: $weight-light;
  19. font-size: 24px;
  20. color: $gray-darker;
  21. text-align: center;
  22. height: 128px;
  23. padding-top: 70px;
  24. line-height: 40px;
  25. }
  26. .singleBtn {
  27. text-align: center;
  28. margin-top: 32px;
  29. button {
  30. margin: 0 auto;
  31. }
  32. }
  33. .dualBtn {
  34. margin-top: 32px;
  35. button {
  36. &:first-child {
  37. float: left;
  38. }
  39. &:nth-child(2) {
  40. float: right;
  41. }
  42. }
  43. &:after {
  44. display: block;
  45. content: " ";
  46. clear: both;
  47. height: 0;
  48. }
  49. }
  50. .hidden {
  51. opacity: 0;
  52. }
  53. .container {
  54. height: 196px;
  55. }
  56. }