_index.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .knight {
  2. margin: 2em auto 0.5em;
  3. display: block;
  4. }
  5. #create-game {
  6. width: 100%;
  7. height: 200px;
  8. margin: 0 auto;
  9. fieldset {
  10. border: 0;
  11. text-align: right;
  12. margin-bottom: 1em;
  13. width: 80%;
  14. input {
  15. margin-left: 1em;
  16. width: 100px;
  17. outline: none;
  18. height: 40px;
  19. line-height: 30px;
  20. padding-left: 1em;
  21. font-size: 1.125rem;
  22. color: #424242;
  23. border: 2px solid #2b222c;
  24. border-left: 4px solid #2eafc2;
  25. }
  26. label {
  27. position: relative;
  28. &::before {
  29. position: absolute;
  30. content: 'Up to 50';
  31. top: 0;
  32. right: 2em;
  33. margin-top: -2.5em;
  34. font-size: 0.75rem;
  35. }
  36. }
  37. }
  38. }
  39. #game-link {
  40. width: 80%;
  41. height: 50px;
  42. line-height: 50px;
  43. font-size: 1.125rem;
  44. color: #fff;
  45. border: 0;
  46. border-bottom: 2px solid darken($dark-purple, 8%);
  47. border-left: 4px solid $blue;
  48. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  49. background: $dark-purple;
  50. padding: 0 1em;
  51. float: left;
  52. border-radius: 2px;
  53. box-shadow: inset 0 -2px darken($dark-purple, 8%);
  54. &:hover {
  55. background: lighten($dark-purple, 3%);
  56. border-bottom: 2px solid darken($dark-purple, 3%);;
  57. box-shadow: inset 0 -2px darken($dark-purple, 3%);
  58. transition: all 0.2s ease-in-out;
  59. }
  60. &:focus {
  61. color: #eee;
  62. }
  63. }
  64. #game-status {
  65. font-family: 'Cherry Swash';
  66. font-size: 1.275rem;
  67. color: darken($red, 5%);
  68. width: 100%;
  69. text-align: center;
  70. margin: 1em 0;
  71. float: left;
  72. }