-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (80 loc) · 1.42 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
button {
border-radius: 10px;
padding: 10px;
margin: 7px;
width: 90px;
color: #f1f1f1;
background-color: rgba(255, 1, 1, 0.712);
border: none;
display: block;
}
button:focus {
outline: none;
}
button:hover {
background-color: rgba(255, 1, 1, 0.89);
}
button:active {
box-shadow: inset 0 0 6px rgb(255, 255, 255);
}
.container__registers {
margin-right: 20px;
}
.registers {
border: 2px solid brown;
width: 200px;
background-color: rgba(255, 254, 254, 0.329);
display: grid;
font-size: 15px;
}
.flex__buttons {
flex-direction: row;
justify-content: center;
}
.flex {
display: flex;
flex-direction: row;
margin: 0;
}
code {
margin-left: 2px;
}
.registers p {
margin: 2px;
}
#disasm {
font-size: 10px;
margin: 0;
border: none;
height: 225px;
overflow: auto;
}
#bin_data {
height: 150px;
width: 520px;
}
#memory {
font-size: 10px;
border: 2px solid brown;
border-left: 0;
}
#memory::-webkit-scrollbar {
width: 5px;
}
#memory::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#memory::-webkit-scrollbar-thumb {
background-color: rgba(255, 0, 0, 0.733);
/*outline: 1px solid slategrey; */
}
#disasm::-webkit-scrollbar {
width: 5px;
}
#disasm::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#disasm::-webkit-scrollbar-thumb {
background-color: rgba(255, 0, 0, 0.733);
/*outline: 1px solid slategrey; */
}