-
Notifications
You must be signed in to change notification settings - Fork 0
/
FccSimon.css
126 lines (106 loc) · 2.55 KB
/
FccSimon.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
body {
font-family: Gill Sans, sans-serif;
background-color: #999;
margin: 0;
cursor: default; }
.flex {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center; }
.block {
display: block; }
.inline {
margin: 4vmin;
font-size: 3vmin;
display: inline; }
.wrapcolors {
box-shadow: 0 0 8vmin #999;
width: 100vmin;
height: 100vmin;
border-radius: 50%; }
.btn {
cursor: pointer;
width: 50vmin;
height: 50vmin; }
.green {
background-color: lime;
opacity: 0.4;
box-shadow: inset 0 0 0 2vmin black;
border-top-left-radius: 100%; }
.red {
background-color: red;
opacity: 0.4;
box-shadow: inset 0 0 0 2vmin black;
border-top-right-radius: 100%; }
.yellow {
background-color: yellow;
opacity: 0.4;
box-shadow: inset 0 0 0 2vmin black;
border-bottom-left-radius: 100%; }
.blue {
background-color: blue;
opacity: 0.4;
box-shadow: inset 0 0 0 2vmin black;
border-bottom-right-radius: 100%; }
.pushed {
opacity: 1;
box-shadow: inset 0 0 0 2vmin #595959; }
.controls {
position: absolute;
top: 25vmin;
left: calc(50% - 25vmin);
box-shadow: inset 0 0 0 3vmin #595959;
background-color: #888;
width: 50vmin;
height: 50vmin;
border-radius: 50%;
flex-wrap: wrap;
text-align: center;
align-content: center; }
.logo {
font-family: Impact, fantasy;
font-size: 8vmin;
flex: 0 0 100%; }
.button {
box-shadow: .1vmin .1vmin .1vmin .2vmin black;
cursor: pointer;
margin: 0 auto;
background-color: #777;
width: 3vmin;
height: 3vmin;
border-radius: 50%; }
.lcd {
font-family: Andale Mono, monospace;
color: rgba(255,0,0,0.8);
margin: 0 auto;
border-radius: 5px;
box-shadow: inset .1vmin .1vmin .1vmin .1vmin black;
background-color: #777;
width: 6vmin;
height: 3vmin; }
.start-button:active, .strict-button:active {
box-shadow: 0 0 .1vmin .1vmin black; }
.power-label {
font-size: 3vmin; }
.switch-holder {
box-shadow: inset .1vmin .1vmin .1vmin .1vmin black;
margin: 0 auto;
border-radius: 5px;
background-color: #777;
width: 98%;
height: 2vmin; }
.power-switch {
box-shadow: inset 0 0 .2vmin .1vmin white;
cursor: pointer;
width: 50%;
border-radius: 5px;
height: 100%;
background-color: black; }
.button-on {
background-color: rgba(255,0,0,0.5); }
.margin-toggle {
margin-left: 50%; }