-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (77 loc) · 1.14 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
html, body{
margin: 0px;
padding: 0px;
width: 100%;
height: 100vh;
overflow-x: hidden;
overflow-y: auto;
}
body{
font-family: 'Arial';
background-color: #3d3d3d;
color: whitesmoke;
}
h1, h2, h3{
margin: 20px;
}
p{
font-size: 14pt;
text-align: justify;
}
canvas{
width: 50%;
height: auto;
aspect-ratio: 1;
background-color: #000;
float: left;
border-radius: 10px;
}
#canvas2{
width: 30%;
float:none;
}
code{
font-size: 14pt;
background-color: #1d1d1d;
display:inline-block;
padding: 4px 8px 4px 8px;
border-radius: 5px;
}
.floatclear{
display: block;
clear: both;
}
#main{
background-color: #2d2d2d;
min-height: 100%;
overflow-x: hidden;
/*position: absolute;*/
margin:auto;
width: 60%;
padding: 0 1% 0 1%;
}
#main div{
padding:10px;
}
#controls{
display:inline-block;
background-color: #1d1d1d;
width: 48%;
float: left;
border-radius:10px;
}
#controls p{
font-weight: bold;
}
#controls label, #numoperations, #numcomparisons{
font-style:italic;
font-weight: normal;
}
#controls input[type='button']{
font-weight: bold;
}
a, a:link, a:active, a:visited{
font-style:italic;
text-decoration: none;
color:#00bbff;
}