A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

37 行
564B

  1. .tabnav {
  2. color: $tabnav-text;
  3. padding: 0;
  4. ul {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. li {
  9. background-color: $tabnav-bg;
  10. display: inline;
  11. border-top-left-radius: 10px;
  12. border-top-right-radius: 10px;
  13. &.tab-selected {
  14. background-color: $tabnav-content-bg;
  15. color: $tabnav-content-text;
  16. }
  17. }
  18. a {
  19. color: inherit;
  20. padding: 0 10px;
  21. text-decoration: none;
  22. }
  23. div.tab-content {
  24. background-color: $tabnav-content-bg;
  25. color: $tabnav-content-text;
  26. padding: 1.25em 0.75em 0.5em 0.75em
  27. }
  28. }