暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rpg-cards.css 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 0;
  6. font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial;
  7. }
  8. /* ---------------------------------------------------------------------------*/
  9. /* Header */
  10. /* ---------------------------------------------------------------------------*/
  11. .navbar {
  12. display: flex;
  13. flex-direction: row;
  14. height: 3rem;
  15. background-color: rgb(126, 120, 3);
  16. color: rgb(228, 228, 238);
  17. font-size: 1.8rem;
  18. line-height: 3rem;
  19. }
  20. .navbar-item, .plain-navbar-item {
  21. padding: 0 .5rem;
  22. }
  23. .navbar-item:hover {
  24. cursor: pointer;
  25. background-color: #999;
  26. }
  27. .flex-navbar-item {
  28. flex: 1;
  29. }
  30. .navbar-item.account-id {
  31. display: flex;
  32. flex-direction: column;
  33. margin-right: 1rem;
  34. }
  35. .navbar-item.account-id .heading {
  36. font-size: 0.8rem;
  37. line-height: 0.9rem;
  38. color: rgb(217, 216, 219);
  39. text-align: center;
  40. text-transform: uppercase;
  41. margin-top: 0.4rem;
  42. }
  43. .navbar-item.account-id .value {
  44. font-size: 1.5rem;
  45. line-height: 1.5rem;
  46. }
  47. .navbar-item.account-id:hover {
  48. cursor: initial;
  49. background-color: inherit;
  50. }