profile.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. input#edit_mail,
  27. input#edit_pass_current,
  28. input#edit_pass_new,
  29. input#edit_pass_repeat,
  30. input#save_mail,
  31. input#save_pass{
  32. display: none;
  33. }
  34. input#change_mail,
  35. span#static_mail,
  36. span#static_pass,
  37. span#api_key{
  38. display: block;
  39. }
  40. div#error_window{
  41. position: absolute;
  42. top: 0;
  43. left: 0;
  44. width: 100%;
  45. height: 100%;
  46. background-color: #00000088;
  47. text-align: center;
  48. display: none;
  49. }
  50. div#error_window h2{
  51. text-align: left;
  52. }
  53. div#error_window section{
  54. margin: 5em auto auto auto;
  55. min-height: 6em;
  56. width: 60%;
  57. text-align: center;
  58. }