-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
69 lines (54 loc) · 820 Bytes
/
main.css
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
body {
font-family: Georgia;
background-color: #fbfaf8;
line-height:1.4em;
}
.container {
position: relative;
font-variant: small-caps;
float: left;
}
.overlay {
display: block;
position: absolute;
z-index: 1;
}
.derivative {
font-family: 'Monaco', 'Consolas', monospace;
font-size: 0.6em;
}
.derivative.error {
background-color: rgba(200,0,0,0.2);
}
.inputdiv {
margin: 10px;
float: left;
font-variant: small-caps;
}
.inputdiv ul {
list-style-type: none;
margin-top: 0;
}
input.derivative {
width: 200px;
}
.var {
font-variant: normal;
font-style: italic;
}
#explain {
clear: both;
width: 60%;
padding-left: 5%;
}
#explain > p {
font-variant: normal;
}
@media screen and (max-width: 850px) {
#explain {
width: 90%;
}
#initial_values {
clear: left;
}
}