-
Notifications
You must be signed in to change notification settings - Fork 11
/
simple.css
43 lines (42 loc) · 1.22 KB
/
simple.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
body,
*:before,
*:after {
font-family: 'PT Sans', sans-serif;
font-size: 24px;
}
input {
height: 32px;
width: 32px;
}
.Result:after {
content: '0';
}
#full-adder-a:checked ~ #full-adder-b:checked ~ #full-adder-result-carry:after {
content: '1';
font-weight: bold;
}
#full-adder-carry:checked ~ #full-adder-a:not(:checked) ~ #full-adder-b:checked ~ #full-adder-result-carry:after {
content: '1';
font-weight: bold;
}
#full-adder-carry:checked ~ #full-adder-a:checked ~ #full-adder-b:not(:checked) ~ #full-adder-result-carry:after {
content: '1';
font-weight: bold;
}
#full-adder-carry:not(:checked) ~ #full-adder-a:not(:checked) ~ #full-adder-b:checked ~ #full-adder-result-sum:after {
content: '1';
font-weight: bold;
}
#full-adder-carry:not(:checked) ~ #full-adder-a:checked ~ #full-adder-b:not(:checked) ~ #full-adder-result-sum:after {
content: '1';
font-weight: bold;
}
#full-adder-carry:checked ~ #full-adder-a:not(:checked) ~ #full-adder-b:not(:checked) ~ #full-adder-result-sum:after {
content: '1';
font-weight: bold;
}
#full-adder-carry:checked ~ #full-adder-a:checked ~ #full-adder-b:checked ~ #full-adder-result-sum:after {
content: '1';
font-weight: bold;
}
/*# sourceMappingURL=simple.css.map */