-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
54 lines (54 loc) · 929 Bytes
/
index.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
html {
touch-action: manipulation;
}
body{
background:rgba(0,0,0,0.3);
/* color: #61443e; */
font-family:Monospace;
font-size:15px;
margin: 0;
padding:0px;
overflow: hidden;
}
canvas {
width: 100%;
height: 100%
}
.button{
background-color:#fa5656;
border: none;
color: white;
padding: 10px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 4px 2px;
cursor: pointer;
position: absolute;
bottom:50px;
opacity:0.5;
}
/* button:hover {
background-color: #5a5a1a
} */
button:active {
background-color: #fffffc;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.linkbtn {
background-color: rgb(24, 248, 117);
border: none;
color: white;
padding: 10px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
margin: 4px 2px;
cursor: pointer;
position: absolute;
bottom:10px;
opacity:0.5;
}