Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2018, CloudBees, Inc.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. /*
  25. * IE11 prevents of the usage of variable,
  26. * but to show the color theme we left it here
  27. */
  28. :root {
  29. --main-bg-color-focus: #2171ce;
  30. --main-bg-color: #4A90E2;
  31. --danger-color: #C4000A;
  32. }
  33.  
  34. html {
  35. color: #4A4A4A;
  36. }
  37.  
  38. .simple-page .logo {
  39. background-image: url('../images/jenkins.svg');
  40. background-repeat: no-repeat;
  41. background-position: 50% 0;
  42. height: 130px;
  43. }
  44.  
  45. .simple-page form .submit input:focus {
  46. background-color: #2171ce; /*var(--main-bg-color-focus);*/
  47. border: solid 1px #2171ce; /*var(--main-bg-color-focus);*/
  48. }
  49.  
  50. .simple-page form .submit input {
  51. background-color: #4A90E2; /*var(--main-bg-color);*/
  52. border: solid 1px #4A90E2; /*var(--main-bg-color-focus);*/
  53. }
  54.  
  55. .simple-page input.normal:focus {
  56. border: solid 1px #2171ce; /*var(--main-bg-color-focus);*/
  57. }
  58.  
  59. .simple-page .danger {
  60. border: 1px solid #C4000A; /*var(--danger-color);*/
  61. box-shadow: 0 0 1px #C4000A; /*var(--danger-color);*/
  62. }
  63.  
  64. .simple-page .alert {
  65. color: #C4000A; /*var(--danger-color);*/
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement