profile.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. table#profile{
  2. margin: auto;
  3. border-collapse: collapse;
  4. border: 0.1em solid #000000;
  5. }
  6. table#profile td{
  7. padding: 0.3em;
  8. border-top: 0.1em solid #000000;
  9. border-bottom: 0.1em solid #000000;
  10. }
  11. table#profile td.title{
  12. text-align: right;
  13. width: 6em;
  14. }
  15. table#profile td.value{
  16. width: 10em;
  17. text-align: left;
  18. }
  19. table#profile td.action{
  20. width: 6em;
  21. text-align: left;
  22. }
  23. table#profile td input, span{
  24. width: 100%;
  25. }
  26. table#profile td#visibility div.help_tooltip p span{
  27. display: block;
  28. margin: 0 0 0 0.5em;
  29. }
  30. table#profile td#visibility div.help_tooltip p span:before{
  31. content: "-";
  32. }
  33. input#edit_mail,
  34. input#edit_pass_current,
  35. input#edit_pass_new,
  36. input#edit_pass_repeat,
  37. input#save_mail,
  38. input#save_pass{
  39. display: none;
  40. }
  41. input#change_mail,
  42. span#static_mail,
  43. span#static_pass,
  44. span#api_key{
  45. display: block;
  46. }
  47. div#error_window{
  48. position: absolute;
  49. top: 0;
  50. left: 0;
  51. width: 100%;
  52. height: 100%;
  53. background-color: #00000088;
  54. text-align: center;
  55. display: none;
  56. }
  57. div#error_window h2{
  58. text-align: left;
  59. }
  60. div#error_window section{
  61. margin: 5em auto auto auto;
  62. min-height: 6em;
  63. width: 60%;
  64. text-align: center;
  65. }