-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvote.css
More file actions
39 lines (38 loc) · 713 Bytes
/
Copy pathvote.css
File metadata and controls
39 lines (38 loc) · 713 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
color: #fff;
}
html , body{
height: 100%;
width: 100%;
position: relative;
}
#page1{
width: 100%;
min-height: 100%;
background-color: rgba(0, 255, 255, 0.199);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 20px;
}
#page1 a button{
z-index: 20;
position: relative;
background-color: blueviolet;
padding: 10px 50px;
text-decoration: none;
color: aliceblue;
border: none;
}
canvas{
/* background-color: aqua; */
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
}