-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (102 loc) · 1.64 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
background-color: rgb(240, 240, 240);
}
#pageTitle {
text-align: center;
}
table {
width: 100%;
text-align: center;
}
#mainTable {
text-align: left;
}
td {
vertical-align: top;
}
#canvasTD {
width: 100%;
}
#canvas {
border: 1px solid black;
background-color: white;
}
#controlsTD {
white-space: nowrap;
text-align: right;
}
.centeredText {
display: inline-block;
width: 100%;
text-align: center;
margin: 0px;
}
.title {
text-decoration: underline;
font-weight: bold;
}
label {
white-space: nowrap;
}
.angleRadio {
margin: 0px;
}
input[type="text"] {
width: 100px;
}
#controlsTD form {
margin: 0px;
}
output {
display: inline-block;
width: 40px;
overflow: hidden;
}
#thetaColor {
box-shadow: inset 0px 0px 0px 2px black;
}
/* The canvas segment colors are pulled from here. Changing this will update the canvas immediately. */
#sinColor {
color: red;
background-color: red;
}
#cosColor {
color: blue;
background-color: blue;
}
#tanColor {
color: green;
background-color: green;
}
#cscColor {
color: orange;
background-color: orange;
}
#secColor {
color: cyan;
background-color: cyan;
}
#cotColor {
color: lightgreen;
background-color: lightgreen;
}
#tanLineColor {
box-shadow: inset 0px 0px 0px 2px black;
}
.valueLabel {
padding: 2px;
display: block;
}
.valueLabel span {
background-color: white;
padding: 0 5px 0 5px;
}
.valueLabel input {
background-color: rgba(255, 255, 255, 0.9);
border: 0px;
border-radius: 0px;
padding: 2px 0 0 0;
}
.reverse {
direction: rtl;
}