-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
55 lines (48 loc) · 816 Bytes
/
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
h2{
font-size: 72pt;
text-align: center;
}
p{
text-align: center;
}
body{
color:#ba02f2;
background-color: black;
font-family: 'Black Ops One', cursive;
}
.box{
transition: all ease-in-out 200ms;
margin-top:0;
}
.boxoff{
opacity: 0;
margin-top:-100vh;
}
#urlName{
width: 50%;
padding: 12px 20px;
margin: 0 auto;
display: block;
border: 1px solid #ccc;
border-radius: 4px
}
#button{
width: 20%;
padding: 12px 20px;
margin: 20px auto;
display: block;
background-image: -webkit-linear-gradient(top, #ba02f2, #7e09a1);
border-radius: 10px;
text-shadow: 3px 1px 3px #cf23cf;
color: #000000;
font-size: 30px;
text-decoration: none;
}
#canvas{
width: 100%;
height: 100%;
position: fixed;
z-index: -1;
left: 0px;
top: 0px;
}