-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (78 loc) · 1.46 KB
/
style.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
* {
margin: 0;
padding: 0;
}
body {
background: #000;
overflow: hidden;
}
.selections {
margin: -10px auto -10px auto;
position: relative;
display: flex;
transition: all .5s ease;
height: 100px;
align-items: center;
}
.blend {
display: inline-block;
justify-content: center;
align-items: center;
margin: 0 auto;
backface-visibility: hidden;
}
.corner {
display: inline-block;
justify-content: center;
align-items: center;
margin: 0 auto;
backface-visibility: hidden;
}
.erase {
display: inline-block;
justify-content: center;
align-items: center;
margin: 0 auto;
backface-visibility: hidden;
}
select {
width: 200px;
padding: 5px;
margin: 15px;
color: white;
outline: none;
background: rgba(255, 255, 255, .25);
backface-visibility: hidden;
}
option {
width: 200px;
padding: 5px;
margin: 15px;
color: white;
background: rgba(0, 0, 0, .75);
}
button {
width: 150px;
height: 30px;
padding: 5px;
margin: 15px;
color: white;
border: none;
background: rgba(255, 255, 255, .25);
outline: none;
backface-visibility: hidden;
}
button:hover {
background: rgba(255, 255, 255, .6);
cursor: pointer;
}
button:active {
background: rgba(255, 255, 255, .6);
cursor: pointer;
animation: moveUpDown .1s ease;
}
@keyframes moveUpDown {
50% {
transform: translateY(4px);
}
}