style.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. body {
  2. width : 80%;
  3. margin: auto;
  4. text-align : center;
  5. }
  6. h1 {
  7. margin-top: 0;
  8. background:#888;
  9. height: 29px;
  10. text-shadow: 1px 1px 1px #444;
  11. -moz-box-shadow: inset 1px 1px 0px 0px #888;
  12. -webkit-box-shadow: inset 1px 1px 0px 0px #888;
  13. box-shadow: inset 1px 1px 0px 0px #888;
  14. color: #EEE;
  15. font-weight: bold;
  16. height: 35px;
  17. line-height: 35px;
  18. padding: 0 25px;
  19. border-width: 0 0 1px 0;
  20. border-style: solid;
  21. border-color: #CCC;
  22. font-size: 1.2em;
  23. border-radius: 5px;
  24. -webkit-border-radius: 5px;
  25. -moz-border-radius: 5px;
  26. }
  27. tr.liste_total td {
  28. color: #000;
  29. font-weight:bold;
  30. }
  31. .button {
  32. color: #000;
  33. font-weight:bold;
  34. font-size:0.86em;
  35. margin: 10px 0 10px 0;
  36. }
  37. #logo{
  38. width : 100%;
  39. margin : 30px 0px 30px 0px;
  40. }
  41. #payment-content{
  42. width : 100%;
  43. text-align : left;
  44. -webkit-border-radius: 6px;
  45. -moz-border-radius: 6px;
  46. border-radius: 6px;
  47. border-style: solid;
  48. border-width: 1px;
  49. border-color: #CCC;
  50. background: #F5F5F5;
  51. border-bottom: 1px solid #CCC;
  52. margin: 0;
  53. padding: 10px 10px;
  54. font-size:0.86em;
  55. }
  56. #payment-table{
  57. width : 100%;
  58. text-align : left;
  59. border : 1px solid #ccc;
  60. }
  61. #payment-table tr{
  62. width : 100%;
  63. }
  64. .liste_total{
  65. text-align : left;
  66. }
  67. .payment-row-left{
  68. width : 40%;
  69. text-align : left;
  70. }
  71. .payment-row-right{
  72. width : 60%;
  73. text-align : right;
  74. }
  75. .payment-button{
  76. text-align : right;
  77. }