-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
111 lines (90 loc) · 1.38 KB
/
main.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
canvas{
pointer-events : auto;
margin-left:120px;
border:2px solid;
}
table,td,th{
border: 1px solid #ddd;
border-collapse: collapse;
padding: 2px;
}
textarea{
resize:none;
overflow:auto;
}
hr{
width:80%;
margin-top:10px;
}
legend{
margin-bottom: 0px;
}
button{
background-color: #e7e7e7;
color: black;
border:none;
padding: 5px 5px;
}
button:hover{
background-color: grey;
color: white;
}
.border-dark{
border-color: white;
}
.content {
display: flex;
justify-content: center;
}
.content > button{
margin : 5px;
}
.dark-mode{
color: white;
}
.body-dark{
background-color: black;
}
.highlight{
background-color:hsl(120,60%,70%);
}
.highlight-dark{
background-color:white;
color: black;
}
#string_input{
border: 1px solid gray;
}
#arrow_menu{
max-width: 110px;
box-shadow: 5px 5px 5px 0px #888888;
position: absolute;
display:none;
border: 2px solid;
background-color:gray;
}
#arrow_menu input[type="text"]{
width: 45px;
border: none;
}
#io_table{
float:right;
width:140px;
min-width:120px;
table-layout:fixed;
}
#io_table td{
max-width: 100px;
word-wrap: break-word;
}
#input_box{
max-width: 182px;
margin-left: auto;
margin-right: auto;
}
#branches{
margin-left: auto;
margin-right: auto;
width: 1000px;
height: 50px;
}