Firefox Addon
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

37 行
645B

  1. #dnsrow{
  2. display: none;
  3. }
  4. .configtable {
  5. border-collapse:collapse;
  6. margin: 0px;
  7. font-size: 12pt;
  8. width:100%;
  9. border: 0px dotted grey;
  10. box-shadow: 3px 3px 12px #000 inset;
  11. border-radius: 10px;
  12. }
  13. .configtable th,.configtable td {
  14. border: 1px solid white;
  15. padding: 10px;
  16. }
  17. .configtable th {
  18. color: #000;
  19. font-size: 18px;
  20. text-align: left;
  21. }
  22. .configtable td {
  23. width: 50%;
  24. }
  25. .configtable tr {
  26. background-color: lavender;
  27. transition: background-color 0.5s ease;
  28. }
  29. .configtable tr:hover {
  30. background-color: #fff;
  31. }
  32. td.authcode {
  33. width:90%;
  34. }