-
Notifications
You must be signed in to change notification settings - Fork 0
/
waldo.css
75 lines (65 loc) · 1.15 KB
/
waldo.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
#everythingContainer {
width: 1100px;
height:900px;
position: relative;
}
img {
width: 100%;
height:100%;
object-fit: cover;
}
svg {
position: absolute;
top: 147px;
left: 11px;
z-index: 4;
}
path {
stroke:rgb(255 0 0 / 0%);
/*stroke: red;*/
fill: rgb(255 0 0 / 0%);
}
#startBox {
background-color: green;
text-align: center;
position: absolute;
color: white;
font-size: 3rem;
font-family: Verdana;
top: 35px;
left: 425px;
width: 795px;
height: 890px;
}
#endBox {
width: 100%;
height: 100%;
padding: auto;
position: fixed;
top: 0;
left: 0;
display: none;
background-color: lightgrey;
text-align: center;
font-size: 32px;
}
.loader {
margin: 30px;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
align-items: center;
border-top: 6px solid #00637a;
border-bottom: 6px solid #00637a;
border-left: 6px solid #E9FFF9;
border-right: 6px solid #E9FFF9;
}
.nothing {
display: none;
height: 0px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}