-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
70 lines (70 loc) · 921 Bytes
/
main.css
File metadata and controls
70 lines (70 loc) · 921 Bytes
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
#container {
display: flex;
flex-direction: row;
}
input[type="number"] {
width: 80px;
}
input[type="text"] {
width: 160px;
}
.equation h2 {
display: inline;
font-size: 1.25rem;
}
.equation {
padding: 5px;
margin: 5px;
}
canvas {
width: 100%;
height: 360px;
}
#text {
margin: 5px;
padding: 10px;
color: #16bac5;
background-color: #212121;
font-weight: bold;
font-size: 1rem;
border: none;
resize: none;
}
#code {
padding: 10px;
color: white;
background-color: #383f51;
font-weight: bold;
font-size: 1rem;
}
#run {
margin-top: 5px;
}
button {
cursor: pointer;
}
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
.header {
margin: 15px 0 30px 0;
}
.header h5 {
font-size: 1.2rem;
margin-bottom: 8px;
}
.header input {
margin-bottom: 3px;
}
textarea {
width: 100%;
height: 360px;
}
#dtinput {
font-style: italic;
display: inline-block;
margin-top: 5px;
}