mathjs/css/style.css
2014-04-16 11:00:31 +02:00

213 lines
2.5 KiB
CSS

body {
background: #f5f5f5 url('img/bright_squares_interlaced.png') repeat;
height: 100%;
width: 100%;
max-width: 100%;
padding: 0;
margin: 0;
font-family:"Lucida Grande", "Lucida Sans Unicode", "DejaVu Sans", Verdana, Arial, sans-serif;
font-weight: normal;
font-size: 12px;
line-height: 1.8;
color: #363636;
}
#page {
position: relative;
width: 700px;
min-height: 700px;
margin: 20px auto 0 auto;
background-color: white;
padding: 40px 50px;
border: 1px solid lightgray;
border-radius: 3px;
box-shadow: 2px 2px 10px rgba(128, 128, 128, 0.2);
}
#page.small {
width: auto;
margin: 5px 5px 0 5px;
padding: 4%;
}
#logo {
width: 330px;
height: 100px;
}
.small #logo {
width: 220px;
height: 67px;
}
.tiny #logo {
width: 165px;
height: 50px;
}
#likes {
min-height: 42px;
margin: 60px 0 20px 0;
padding: 0;
overflow: visible;
}
div.like {
float: left;
width: 120px;
max-width: 100%;
height: 42px;
}
#footer {
color: #b4b4b4;
text-align: center;
margin: 5px auto 30px auto;
}
div.cols {
padding: 0;
margin: 0;
}
.small div.cols {
width: 100%;
}
div.cols .left {
float: left;
width: 47%;
}
div.cols .right {
float: right;
width: 47%;
}
.small div.cols .left,
.small div.cols .right {
width: 100%;
}
div.cols .end {
clear: both;
height: 0;
overflow: hidden;
}
table {
border-collapse: collapse;
}
table td {
padding: 5px 20px 5px 0;
}
pre {
font-family: monospace;
font-size: 12px;
color: #363636;
padding: 4px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: #f5f5f5;
border: 1px solid #e5e5e5;
border-radius: 2px;
}
.tiny pre {
font-size: 10px;
}
#example {
overflow: auto;
width: 100%;
border: 1px solid #e5e5e5;
background-color: #f5f5f5;
border-radius: 2px;
}
#example .keyword {
color: #004ED0;
}
#example .string {
color: orange;
}
#example .number {
color: #dc3912;
}
#example .comment {
color: gray;
}
#commandline {
width: 100%;
height: 300px;
}
.tips {
color: #b4b4b4;
margin: 10px 0;
}
.tips ul {
margin: 0;
}
h1 {
font-size: 120%;
margin-top: 20px;
}
p {
max-width: 600px;
}
ul {
list-style-type: square;
}
img {
border: none;
}
a {
color: #dc3912;
}
a:visited {
color: #b82e12;
}
a:hover {
color: #f43f14;
}
#footer a {
color: #b4b4b4;
text-decoration: none;
}
#footer a:hover {
color: #dc3912;
}
#forkme {
position: absolute;
text-align: right;
top: 0;
right: 0;
border: 0;
}
#forkme.small {
display: none;
}