-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
77 lines (46 loc) · 814 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
* {
margin: 0px;
padding: 0px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
#canvas {
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 1;
position: fixed;
pointer-events: none;
}
#forkme {
top: 0px;
right: 0px;
width: 150px;
height: 150px;
position: fixed;
z-index: calc(9e999);
clip-path: polygon(15px 0px, 60px 0px, 150px 90px, 150px 135px);
}
#title {
margin: auto;
padding: 50px;
}
#start {
top: 40%;
left: 50%;
width: 200px;
padding: 25px;
color: white;
background-color: green;
border-radius: 10px;
border: 2px solid black;
transform: translate(-50%, -50%);
position: absolute;
cursor: pointer;
}
#start:hover {
color: black;
background-color: lightgreen;
}