You are here

jquery.simpledialog.css in TinyBrowser 7

/**
 * jQuery Simple Dialog 
 */
.sd_container{
 font-family: arial,helvetica,sans-serif;
 margin:0;
 padding: 0px 10px 10px 10px;
 position: absolute;
 background-color: #fff;
 text-align:left;
 border: solid 5px #666;
}
.sd_container a {
 color: #4444cc;
}
.sd_header{
 font-size: 125%;
 font-weight:bold;
 margin-bottom: 10px;
}
.sd_content{
 padding: 0px;
}
.sd_footer{
 color: #a0a0a0;
 margin-top: 10px;
}
.sd_overlay{
 position: absolute;
 margin:0;
 padding: 0;
 top: 0;
 left: 0;
 background-color: #222;
}
.sd_loading{
 background: url('../img/indicator.gif') center no-repeat;
 background-color: #fff;
 height: 60px;
 width: 60px;
}
.sd_closelabel{
 position:absolute;
/*
 width:50px;
 height:22px;
*/
 line-height:22px;
 top:0;
 left:0;
 padding:5px 10px;
 text-align:center;
 background-color:#ccc;
}
.sd_closelabel a {
 text-decoration:none;
 color: #222;
 font-size: 12px;
 font-weight:bold;
}
.close {
 border: solid 1px #aaa;
 background: #eee;
 padding: 3px 8px;
 margin-bottom: 5px;
}
h3 .close {
 text-decoration: none;
}

File

tinybrowser/css/jquery.simpledialog.css
View source
  1. /**
  2. * jQuery Simple Dialog
  3. */
  4. .sd_container{
  5. font-family: arial,helvetica,sans-serif;
  6. margin:0;
  7. padding: 0px 10px 10px 10px;
  8. position: absolute;
  9. background-color: #fff;
  10. text-align:left;
  11. border: solid 5px #666;
  12. }
  13. .sd_container a {
  14. color: #4444cc;
  15. }
  16. .sd_header{
  17. font-size: 125%;
  18. font-weight:bold;
  19. margin-bottom: 10px;
  20. }
  21. .sd_content{
  22. padding: 0px;
  23. }
  24. .sd_footer{
  25. color: #a0a0a0;
  26. margin-top: 10px;
  27. }
  28. .sd_overlay{
  29. position: absolute;
  30. margin:0;
  31. padding: 0;
  32. top: 0;
  33. left: 0;
  34. background-color: #222;
  35. }
  36. .sd_loading{
  37. background: url('../img/indicator.gif') center no-repeat;
  38. background-color: #fff;
  39. height: 60px;
  40. width: 60px;
  41. }
  42. .sd_closelabel{
  43. position:absolute;
  44. /*
  45. width:50px;
  46. height:22px;
  47. */
  48. line-height:22px;
  49. top:0;
  50. left:0;
  51. padding:5px 10px;
  52. text-align:center;
  53. background-color:#ccc;
  54. }
  55. .sd_closelabel a {
  56. text-decoration:none;
  57. color: #222;
  58. font-size: 12px;
  59. font-weight:bold;
  60. }
  61. .close {
  62. border: solid 1px #aaa;
  63. background: #eee;
  64. padding: 3px 8px;
  65. margin-bottom: 5px;
  66. }
  67. h3 .close {
  68. text-decoration: none;
  69. }