-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.css
66 lines (61 loc) · 1.09 KB
/
intro.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
.title{
color: pink;
text-align: center;
font-size: 50pt;
font-family: sans-serif;
animation-name: example;
animation-duration: 1s;
animation-iteration-count: infinite;
}
#background {
width: 100%;
height: 100%;
position: fixed;
left: 0px;
top: 0px;
z-index: -99999;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
#background img {
width: 100%;
height: 100%;
}
@keyframes example{
0%{color: #93c648;}
25%{color: #8d44b6;}
50%{color: #f13a70;}
75%{color: #119cdd;}
100%{color: #fa9501;}
}
.butt{
padding: 10px 20px;
background-color: #fa9501;
color: white;
border-radius: 50px;
border:4px solid #119cdd;
text-align: center;
font-size: 20px;
transition-duration: 0.5s;
cursor: pointer;
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.butt:hover{
background-color: #8d44b6;
color:red;
}
.butt:active{
transform: translateY(15px);
}
.butt1:active{
transform: translateY(15px);
}
.butt1:hover{
background-color: #f452af;
color: black;
}