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文字以内のものにしてください。

36 行
545B

  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. padding: 0 10px;
  20. text-decoration: none;
  21. }
  22. div.tab-content {
  23. background-color: $tabnav-content-bg;
  24. color: $tabnav-content-text;
  25. padding: 1.25em 0.75em 0.5em 0.75em
  26. }
  27. }