-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (72 loc) · 1.13 KB
/
style.css
File metadata and controls
85 lines (72 loc) · 1.13 KB
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
* {
box-sizing: border-box;
}
html,body {
background-color: rgba(30,30,30,1);
font-family: 'Roboto', sans-serif;
color: rgba(210,210,210,1);
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
#container {
display: block;
width: 100%;
height: 100%;
overflow: hidden;
}
.input-control {
z-index: 10;
font-size: x-large;
margin: 5px;
}
#display-area {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
h1 {
margin: 0;
display: inline;
}
.full-width {
width: 100%;
position: absolute;
bottom: 1em;
text-align: center;
}
.dark-translucent {
background-color: rgba(0,0,0,0.85);
padding: 10px;
border-radius: 5px 5px;
box-shadow: 0 0 10px black;
}
#equation-input {
border: 0;
color: inherit;
text-align: left;
width: 45%;
display: inline-block;
color: rgba(255,255,255,.95);
}
.separator {
margin: 10px 0 10px 0;
border-bottom: 1px solid rgba(200,200,200,1);
}
.control-list {
list-style: none;
margin: 0;
padding: 0;
}
a {
color: tomato;
text-decoration: none;
}
img.thumbnail {
width: 1.2em;
vertical-align: text-bottom;
}