style.css 1.14 KB
Newer Older
1
hr {
2 3
  border: 1px solid;
  border-color: #36C;
4
  margin: 1em 0;
5 6 7 8 9 10 11 12
}

h1, h2, h3, h4 {
  margin: 0;
  margin-bottom: 0;
}

h1 {
13
  font-size: 154%;
14 15 16 17
  height: 1.2em;
}


18
li {
19 20 21
  margin: .3em 0 1em 0;
}

22
body {
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
  font-family: Helvetica,Arial,sans-serif;
  color: #000;
  background-color: #fff;
}

div.title {
  background-color: rgb(229, 236, 249);
  border-top: 1px solid rgb(51, 102, 204);
  text-align: center;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin-bottom: 20px;
}

div.subtitle {
  border-bottom: 1px solid rgb(51, 102, 204);
  margin-top: 2em;
}

td.contents {
43
  text-align: left;
44 45 46 47 48 49 50 51 52 53 54 55 56
}

div.run {
  margin: 20px;
  width: 300px;
  height: 300px;
  float: right;
  background-color: rgb(229, 236, 249);
  background-image: url(v8-logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid rgb(51, 102, 204);
}
57

58 59 60 61 62 63 64 65 66
div.warning { 
  background: #ffffd9;
  border: 1px solid #d2d26a;
  display: none;
  margin: 1em 0 2em;
  padding: 8px;
  text-align: center; 
}

67 68 69 70 71 72 73 74 75 76 77
#status {
  text-align: center;
  margin-top: 50px;
  font-size: 120%;
  font-weight: bold;
}

#results {
  text-align: left;
  margin: 30px 0 0 90px;
}