1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/* Tags */
body {
text-align: left;
background-color: #eee;
font-family: sans-serif;
font-size: 8pt;
}
h1 {
font-family: serif;
width: 830px;
background-color: #555;
color: #ddd;
margin-left: -20px;
padding-left: 10px;
}
h2 a:hover {
background-color: #ccc;
}
h2 a {
color: #7690c9;
text-decoration: none;
font-family: sans-serif;
background-color: #eee;
margin-left: -20px;
padding-left: 20px;
padding-right: 40px;
-moz-border-radius-topright: 20px;
-moz-border-radius-bottomright: 20px;
-webkit-border-top-right-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
a img {
border: 0;
}
/* Classes */
/* -- none -- */
/* Elements */
#container {
width: 800px;
text-align: left;
background-color: #ddd;
padding: 20px;
font-size: 10pt;
-moz-border-radius-topleft: 20px;
-moz-border-radius-bottomright: 20px;
-webkit-border-top-left-radius: 20px;
-webkit-border-bottom-right-radius: 20px;
border-top-left-radius: 20px;
border-bottom-right-radius: 20px
}
#jsxgraph-head {
float: right;
margin-top: -5px;
color: white;
}
#jxgbox {
width: 700px;
height: 700px;
background: none;
border-color: #777;
}
#explanation {
text-align: left;
width: 800px;
}
#source {
text-align: left;
width: 800px;
}
#jxgsource {
background-color: #eee;
}
#footer {
background-color: #555;
color: #ddd;
text-align: right;
width: 820px;
margin-left: -20px;
margin-bottom: -20px;
padding: 5px;
padding-right: 15px;
-moz-border-radius-bottomright: 20px;
-webkit-border-bottom-right-radius: 20px;
border-bottom-right-radius: 20px
}
#footer a {
color: #7690c9;
text-decoration: none;
}
|