Advertisement
Guest User

Untitled

a guest
Jul 24th, 2012
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.47 KB | None | 0 0
  1. body{
  2.     margin: 0px;
  3.     padding: 0px;
  4.     background: #EFEFEF;
  5.     cursor: default;
  6.     font-size: 12px;
  7.     font-family: Arial, Tahoma;
  8. }
  9. .questionContainer {
  10.     width: 600px;
  11.     border: 3px double #CFCFCF;
  12.     padding: 3px;
  13.     margin: 10px;
  14. }
  15. ul {
  16.     margin: 0px;
  17.     padding: 5px;
  18. }
  19. ul li {
  20.     list-style: none;
  21. }
  22. a {
  23.     border: 1px solid #000;
  24.     padding: 2px 5px;
  25.     font-weight: bold;
  26.     font-size: 10px;
  27.     background: #FFF;
  28.     cursor: pointer;
  29. }
  30. a:hover {
  31.     background: none;
  32. }
  33. .btnContainer {
  34.     width: 96%;
  35.     margin: 10px 0px 10px 2%;
  36. }
  37. #progressKeeper {
  38.     width: 600px;
  39.     height: 25px;
  40.     border: 3px double #CFCFCF;
  41.     margin: 0px 10px;
  42.     padding: 3px;
  43. }
  44. .txtStatusBar {
  45.     margin: 5px 10px;
  46.     font-weight: bold;
  47. }
  48. #progress {
  49.     background: green;
  50.     width: 0;
  51.     height: 25px;
  52. }
  53. .radius {
  54.     border-radius: 6px;
  55.     -moz-border-radius: 6px;
  56.     -webkit-border-radius: 6px;
  57.     -o-border-radius: 6px;
  58. }
  59. #resultKeeper {
  60.     width: 600px;
  61.     margin: 10px;
  62.     padding: 3px;
  63.     border: 3px double #CFCFCF;
  64. }
  65. #resultKeeper div {
  66.     line-height: 20px;
  67. }
  68. .totalScore {
  69.     font-weight: bold;
  70. }
  71. input {
  72.     position: relative;
  73.     top: 2px;
  74. }
  75. h1 {
  76.     border-bottom: 1px solid #CCCCCC;
  77.     font-size: 16px;
  78.     height: 22px;
  79.     margin: 10px;
  80.     text-indent: 5px;
  81. }
  82. .prev { float: left; }
  83. .next, .btnShowResult { float: right; }
  84. .clear { clear: both; }
  85. .hide { display: none; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement