-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (84 loc) · 1.45 KB
/
index.css
File metadata and controls
84 lines (84 loc) · 1.45 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
body {
background-color: #282828;
color: #FFFFFF;
}
main {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 80% 20%;
height: 100vh;
}
h1, h2, h3 {
text-align: center;
}
#display {
background-color: #AAAAAA;
width: 100%;
height: 100%;
grid-row: 1 / 2;
grid-column: 1 / 2;
}
#graph {
background-color: #AAAAAA;
margin: 2%;
height: 40vh;
width: 96%;
}
#configuration {
grid-row: 1 / 3;
grid-column: 2 / 3;
height: 100%;
}
#controls {
grid-row: 2 / 3;
grid-column: 1 / 2;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#configuration > div, #controls > .centerer {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
}
.centerer {
display: flex;
justify-content: space-around;
}
#controls > .centerer {
display: grid;
grid-template-columns: auto auto;
grid-template-rows: auto auto;
gap: 1vw;
}
.container input, .container select {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
}
input, select {
background-color: #555555;
color: inherit;
}
#controls button {
background-color: #00FF00;
}
#configuration button {
background-color: #007bff;;
}
button {
padding: 10px;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#result {
margin-top: 10px;
font-size: 18px;
}