-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (73 loc) · 1.25 KB
/
Copy pathstyles.css
File metadata and controls
85 lines (73 loc) · 1.25 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
#sheep_poster{
display: block;
margin-left: auto;
margin-right: auto;
width: 45%;
}
@keyframes flicker{
0%{
opacity: 1;
}
50%{
opacity: 0.5;
}
100%{
opacity: 1;
}
}
.flicker-image{
transition: opacity 0.5s ease;
}
.flicker-image:hover{
animation: flicker 0.1s infinite alternative;
}
#canvas-body{
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
color: rgb(255, 0, 221);
background-image: url('images/construction_paper.jpeg');
font-family: Comic Sans MS, Comic Sans, cursive;
font-size: 2rem;
}
#canvas-container{
height: 100%;
display: flex;
}
#toolbar{
display: flex;
flex-direction: column;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
width: 120px;
}
#toolbar *{
margin-bottom: 6px;
}
#toolbar label {
font-size: 1rem;
}
#toolbar input {
width: 100%;
}
#toolbar button {
background-color: rgb(255, 0, 221);
border: none;
border-radius: 4px;
color: white;
padding: 2px;
}
.sheep-img{
max-width: 100%;
cursor: pointer;
filter: blur(16px);
transition: filter 0.5s ease;
}
.sheep-img:hover{
filter: blur(0);
}
.sheep-div{
display: inline-block;
}