-
Notifications
You must be signed in to change notification settings - Fork 0
/
microprocessor.css
132 lines (125 loc) · 2.38 KB
/
microprocessor.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
130
131
132
@font-face {
font-family: "square matrix regular";
src: url("https://raw.githubusercontent.com/ZainAlAbideenKhan/fonts/main/Square-Dot-Matrix.ttf")
format("truetype");
font-weight: normal;
font-style: normal;
}
main {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
background-color: #a6d9dc;
height: 100vh;
justify-content: space-between;
}
.ui {
padding: 5px 30px;
margin: 10px 0;
border: dotted 2px #44787c;
text-align: center;
}
.enable-keyboard input {
cursor: pointer;
outline: none;
}
.microprocessor8085 {
position: relative;
transform-origin: top left;
padding: 0 20px;
width: 976px;
height: 577px;
}
.microprocessor8085-img {
position: absolute;
width: 976px;
}
.reset-button button {
position: absolute;
top: 42.5px;
left: 94.25px;
width: 70px;
height: 70px;
font-family: system-ui;
letter-spacing: 1.5px;
font-size: 15px;
font-weight: 600;
color: #fff;
background: #f92f2f;
border: solid 2px #fff;
border-radius: 7.5px;
cursor: pointer;
}
.power-led {
position: absolute;
top: 422.35px;
left: 767.35px;
width: 6px;
height: 6px;
background-color: red;
border-radius: 100%;
border: 3px solid transparent;
box-shadow: 0 0 8px 4px rgb(255 17 0);
}
.power-switch {
position: absolute;
top: 376.5px;
left: 812px;
width: 15px;
height: 15px;
background-color: #353535;
cursor: pointer;
transition: left 100ms ease-in 100ms;
}
.screen {
position: absolute;
top: 407px;
left: 299px;
width: 400px;
height: 90px;
border: solid 3px #151515;
border-radius: 4px;
background-color: #e7d849;
margin-bottom: 10px;
cursor: pointer;
}
.screen .text {
position: absolute;
font-size: 30px;
font-family: "square matrix regular", sans-serif;
font-weight: 600;
top: 10px;
left: 50px;
color: #11200e;
}
.screen .input {
position: absolute;
font-size: 30px;
font-family: "square matrix regular", sans-serif;
font-weight: 600;
top: 10px;
left: 4px;
color: #11200e;
}
/* developer info section */
section.info-section {
position: absolute;
width: 30%;
left: 0;
bottom: 0;
font-size: 11px;
font-family: monospace;
padding: 7px 10px;
}
/* Full screen button */
.full-screen button {
padding: 4px 15px;
background: #54dbe3;
border: 0;
border-radius: 2px;
cursor: pointer;
}
.full-screen button:active {
background-color: #1db3bb;
}