-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (64 loc) · 1.1 KB
/
style.css
File metadata and controls
75 lines (64 loc) · 1.1 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
label {
display: block;
font: 1rem 'Fira Sans', sans-serif;
}
#UI{
position:fixed;
top:0px;
}
input,
label {
margin: .4rem 0;
}
.state {
border-radius: 50%;
width:3vh;
height: 3vh;
background-color: aquamarine;
border: 1mm ridge rgba(56, 56, 56, 0.521);
text-align: center;
line-height: 3vh;
font-size: 3vh;
font-weight: 200;
vertical-align: middle;
position:absolute;
}
#errorMessage{
color:rgba(0,0,0,0);
font-size: 0px;
}
#errorMessage.showing{
color:red;
font-size: medium;
}
.invalidInput{
background-color: rgb(238, 77, 77);
}
.active{
background-color: rgb(235, 64, 52);
}
.final{
border-width: 2mm;
}
#graphic{
height: 80vh;
width: 80vh;
position: fixed;
left: 50%;
transform: translate(-50%, 0);
bottom: 0px;
}
#mainCanva{
width: 100%;
height: 100%;
z-index: 1000;
display: block;
bottom: 0;
right: 0;
}
#mainCanva.raccoon{
background-image: url('RaccoonHead.png');
background-size: 50%;
background-repeat: no-repeat;
background-position: center;
}