-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathstyles.css
More file actions
138 lines (115 loc) · 2.07 KB
/
styles.css
File metadata and controls
138 lines (115 loc) · 2.07 KB
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
133
134
135
136
137
138
*,
body,
html {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
my-tv {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
tv-monitor {
background-color: rgb(107, 107, 107);
border: 15px solid rgb(107, 107, 107);
border-radius: 30px;
box-shadow: 10px 5px 34px 0px rgba(0, 0, 0, 0.75);
}
tv-buttons {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
margin-left: 50px;
}
canvas {
background: radial-gradient(#ccc 2px, #eee 2px) !important;
background-size: 25px 25px !important;
border: 15px solid rgb(168, 168, 168);
border-radius: 30px;
margin: 0;
}
#tests {
display: flex;
flex-direction: row;
max-height: 30vh;
margin: 20px 0;
border: 3px solid gray;
background-color: #eee;
border-radius: 5px;
}
#testlogs {
display: flex;
flex-direction: column;
overflow: scroll;
margin: 20px 0;
max-height: 100%;
}
#testlogs > p {
font-family: "Courier New", Courier, monospace;
margin: 0;
}
#testbox {
min-width: 100px;
max-width: 100px;
min-height: 100px;
max-height: 100px;
border: 3px solid gray;
border-radius: 10px;
margin: 20px;
background-color: lime;
}
#play:after {
content: "\A(space)";
white-space: pre;
}
#restart:after {
content: "\A(R)";
white-space: pre;
}
#view:after {
content: "\A(V)";
white-space: pre;
}
#pause:after {
content: "\A(space)";
white-space: pre;
}
#resume:after {
content: "\A(space)";
white-space: pre;
}
.button {
border: 2px solid gray;
border-radius: 5px;
padding: 25px;
margin: 10px;
cursor: pointer;
width: 100px;
}
.button:hover {
transform: scale(1.1);
filter: drop-shadow(5px 5px 5px rgba(42,42,42,.6));
}
a {
text-align: center;
font-weight: 200;
}
a {
content: "test";
}
#play {
background-color: rgb(178, 255, 178);
}
#pause {
background-color: rgb(243, 255, 178);
}
#resume {
background-color: rgb(178, 255, 242);
}
#restart {
background-color: rgb(255, 169, 169);
}
#view {
background-color: lightgoldenrodyellow;
}